homebridge-http-loxone-shades
v0.3.0
Published
Loxone shade status plugin for Homebridge
Downloads
3
Maintainers
Readme
homebridge-http-loxone-shades
This is a plugin for homebridge which can control window blinds / shades via Loxone.
Install
Previous installation of Homebridge is required.
Then run the following command to install homebridge-http-loxone-shades
npm install -g homebridge-http-loxone-shades
Configuration
{
"accessory": "LoxoneShade",
"name": "Office Window",
"pollInterval": 500,
"statusUrl": "http://localhost/jdev/sps/io/Office%20Windows%20Position/state",
"targetPositionUrl": "http://localhost/jdev/sps/io/Office%20Windows%20TargetPosition/"
}
You can add as many accessories as needed.
Example homebridge configuration
{
...
"accessories": [
{
"accessory": "LoxoneShade",
"name": "Office Window",
"pollInterval": 500,
"statusUrl": "http://localhost/jdev/sps/io/Office%20Windows%20Position/state",
"targetPositionUrl": "http://localhost/jdev/sps/io/Office%20Windows%20TargetPosition/"
}
],
"platforms": [
...
]
}