npm.io
0.3.0 • Published 6 years ago

homebridge-http-loxone-shades

Licence
MIT
Version
0.3.0
Deps
0
Size
6 kB
Vulns
0
Weekly
0

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": [
        ...
    ]
}