diff --git a/README.md b/README.md index 822f330..499c872 100755 --- a/README.md +++ b/README.md @@ -2,29 +2,34 @@ #homebridge-smarthomeng Homebridge plugin for SmartHomeNG + ##Currently supported This plugin currently supports: * LightBulb with on/off and brightness characteristic * Window Covering with currentposition and targetposition characteristic (state not yet supported) ##Requirements -SmartHomeNG: https://github.com/smarthomeNG/smarthome -homebridge: https://www.npmjs.com/package/homebridge +* SmartHomeNG: https://github.com/smarthomeNG/smarthome +* homebridge: https://www.npmjs.com/package/homebridge + ##Installation Install nodejs >= 0.12. You have to find out the right way for your OS. The following commands have been tested on Debian Jessie.
 curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
 sudo apt-get install -y nodejs
 
+ Install homebridge from NPM repository
 npm install -g homebridge
 
+ Install this plugin from NPM repository *** ATTENTION: NOT YET PUBLISHED ***
 npm install -g homebridge-smarthomeng
 
+ ##Configuration You have to create a config.json in .homebridge directory. You'll find that directory in your home folder. This is an example config file which just uses this plugin and some example SmartHomeNG items. @@ -50,12 +55,13 @@ This is an example config file which just uses this plugin and some example Smar "onoff": "EG.Buero.Licht" }, { - "name": "Rollladen Büro", + "name": "Rolladen Büro", "type": "WindowCovering", + "updown": "EG.Buero.Rolladen.AufAb", "currentposition": "EG.Buero.Rolladen.Position", - "targetposition": "EG.Buero.Rolladen.Position" + "targetposition": "EG.Buero.Rolladen.Position", + "inverted": true } - ] } ],