homebridge-windowshades-command
v0.0.10
Published
Window Shades plugin for homebridge: https://github.com/nfarina/homebridge
Downloads
2
Maintainers
Readme
homebridge-windowshades-command
Homebridge plugin to control a window shades using command line functions
It supports commands to check state
, open
, and close
the window shades
Installation
- Install Homebridge using:
npm install -g homebridge
- Install this plugin using:
npm install -g homebridge-windowshades-command
- Update your configuration file. See the sample below.
Configuration
Configuration sample:
"accessories": [
{
"accessory": "WindowShadesCommand",
"name": "Window Shades",
"open": "./open.sh",
"close": "./close.sh",
"state": "./check_state.sh",
"status_update_delay": 15,
"poll_state_delay": 20,
"ignore_errors": false,
"log_polling": false
}
]
Explanation:
Field | Description
------------------------|------------
accessory | Must always be "GarageCommand" (required)
name | Name of the Window Shades (required)
open | open command. Examples: ./open.sh
or node open.js
(required)
close | close command. Examples: ./close.sh
or node close.js
(required)
state | state command. Examples: ./check_state.js
or node state.js
(required)
status_update_delay | Time to have shades in opening or closing state (defaults to 15 seconds)
poll_state_delay | Time between polling for the window shades state (leave blank to disable state polling)
ignore_errors | Causes the plugin to replace 'STOPPED' status with 'CLOSED' (defaults to false)
log_polling | Will log every single status check to the homebridge log (default to false)
The open, close, and state commands must return the following verbs: OPEN, CLOSED, OPENING, CLOSING, STOPPED.
FAQ
Can I have multiple window shades?
Yes! but this is a feature of homebridge, not the plugin. Add another accessory block with a different name than your other window shades.
If using homebridge-config-ui-x you can do this in the plugin settings.
Can you add 'x' feature?
Yes, I probably could. Will I? Probably not. If there is a feature you want to add, please feel free to code it yourself and submit a pull request so others can benefit.
What is the STOPPED status?
STOPPED is a valid status for a shades to be in, but in the Home App, it is actually reported as OPEN. If an error occures in getting the status, STOPPED should be returned, and it will be logged, but the plugin has the ignore_errors
config option so that a false OPEN event won't be triggered. Be careful with ignore_errors
as it can be somewhat dangerous to report an error as CLOSED.