Browse Source

Update GPIO lines to use GPIO1 and GPIO2 on NodeMCU devkit 1

Marcos Kirsch 8 years ago
parent
commit
f62995cf18
1 changed files with 2 additions and 2 deletions
  1. 2 2
      http/garage_door_opener.lua

+ 2 - 2
http/garage_door_opener.lua

@@ -23,8 +23,8 @@ end
 
 return function (connection, args)
    print('Garage door button was pressed!', args.door)
-   if     args.door == "1" then pushTheButton(connection, 3)   -- GPIO0
-   elseif args.door == "2" then pushTheButton(connection, 4)   -- GPIO2
+   if     args.door == "1" then pushTheButton(connection, 1)   -- GPIO1
+   elseif args.door == "2" then pushTheButton(connection, 2)   -- GPIO2
    else
       connection:send("HTTP/1.0 400 OK\r\nContent-Type: application/json\r\nCache-Control: private, no-store\r\n\r\n")
       connection:send('{"error":-1, "message":"Bad door"}')