-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from kodsnutten/master
Initial support for Yale Doorman
- Loading branch information
Showing
2 changed files
with
183 additions
and
37 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 |
---|---|---|
@@ -1,35 +1,37 @@ | ||
# homebridge-verisure | ||
|
||
This is a plugin for [homebridge](https://github.com/nfarina/homebridge). It's a | ||
working implementation for several Verisure devices: | ||
|
||
- [x] __HUMIDITY1__ - Temperature | ||
- [x] __SIREN1__ - Temperature | ||
- [x] __SMARTPLUG__ - State, on, off | ||
- [x] __SMOKE2__ - Temperature | ||
- [x] __VOICEBOX1__ - Temperature | ||
|
||
## Installation | ||
|
||
```bash | ||
npm install -g homebridge-verisure | ||
``` | ||
|
||
Now you can update your configuration file to enable the plugin, see sample | ||
snippet below. | ||
|
||
## Configuration | ||
|
||
As part of your configuration, add an object with your Verisure credentials to | ||
your array (list) of enabled platform plugins. | ||
|
||
```json | ||
"platforms": [ | ||
{ | ||
"platform" : "verisure", | ||
"name" : "Verisure", | ||
"email": "[email protected]", | ||
"password": "yourT0p5ecre7Passw0rd" | ||
} | ||
] | ||
``` | ||
# homebridge-verisure | ||
|
||
This is a plugin for [homebridge](https://github.com/nfarina/homebridge). It's a | ||
working implementation for several Verisure devices: | ||
|
||
- [x] __DOORLOCK__ - Yale Doorman Lock/Unlock | ||
- [x] __HUMIDITY1__ - Temperature | ||
- [x] __SIREN1__ - Temperature | ||
- [x] __SMARTPLUG__ - State, on, off | ||
- [x] __SMOKE2__ - Temperature | ||
- [x] __VOICEBOX1__ - Temperature | ||
|
||
## Installation | ||
|
||
```bash | ||
npm install -g homebridge-verisure | ||
``` | ||
|
||
Now you can update your configuration file to enable the plugin, see sample | ||
snippet below. | ||
|
||
## Configuration | ||
|
||
As part of your configuration, add an object with your Verisure credentials to | ||
your array (list) of enabled platform plugins. | ||
|
||
```json | ||
"platforms": [ | ||
{ | ||
"platform" : "verisure", | ||
"name" : "Verisure", | ||
"email": "[email protected]", | ||
"password": "yourT0p5ecre7Passw0rd", | ||
"doorcode": "000000" | ||
} | ||
] | ||
``` |
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