Commit 0eaf6a29 authored by Kristian Tan's avatar Kristian Tan

Removed function argument

parent 3b88970e
......@@ -31,7 +31,7 @@ def main():
# The function below is executed when someone requests a URL with the pin number and action in it:
@app.route("/<change_pin>")
def action(change_pin, action):
def action(change_pin):
change_pin = int(change_pin)
device_name = pins[change_pin]['name']
print("Input value before change: " + str(GPIO.input(change_pin)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment