Last active
October 31, 2016 03:44
-
-
Save rxseger/734c8150876285f8791bb9a70981dc51 to your computer and use it in GitHub Desktop.
~/.homebridge/config.json for homebridge-http to ESP8266 web server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"accessory": "Http", | |
"name": "Stand Lamp", | |
"http_method": "GET", | |
"on_url": "http://192.168.1.4/outlet/on", | |
"off_url": "http://192.168.1.4/outlet/off", | |
"service": "Light" | |
}, | |
{ | |
"accessory": "Http", | |
"name": "Buzzer", | |
"http_method": "GET", | |
"on_url": "http://192.168.1.4/buzzer/on?freq=200&duty=512", | |
"off_url": "http://192.168.1.4/buzzer/off", | |
"service": "Switch" | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment