-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Luca Critelli
committed
Jan 24, 2016
0 parents
commit fe7237b
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# homebridge-http-temperature-humidity | ||
|
||
Supports https devices on HomeBridge Platform | ||
|
||
# Installation | ||
|
||
1. Install homebridge using: npm install -g homebridge | ||
2. Install this plugin using: npm install -g homebridge-httptemperaturehumidity | ||
3. Update your configuration file. See sample-config.json in this repository for a sample. | ||
|
||
# Configuration | ||
|
||
|
||
|
||
Configuration sample: | ||
|
||
``` | ||
"accessories": [ | ||
"accessories": [ | ||
{ | ||
"accessory": "HttpTempHum", | ||
"name": "Living Room Weather", | ||
"url": "http://192.168.1.210/weather", | ||
"sendimmediately": "", | ||
"http_method": "GET" | ||
} | ||
] | ||
```# homebridge-http-simple-switch |