homebridge-velux-kfx210
v1.0.1
Published
A Homebridge plugin integrating with a Velux KFX 210 control panel via RaspberryPi + Pimoroni Automation HAT.
Downloads
13
Maintainers
Readme
homebridge-velux-KFX210
A Homebridge plugin integrating with a Velux Smoke Vent KFX 210 control panel via RaspberryPi + Pimoroni Automation HAT.
Aim
Provides:
- contact sensor for alarm state
- contact sensor for error state
- open/close switch for comfort mode
The Pimoroni Automation HAT is controlled via the provided Python API with some extremely simple Python scripts which are spawned as required by this NodeJS plugin.
The KFX 210 control panel does not provide the ability to sense the current open/close comfort state of the smoke vent. The state for this plugin defaults to closed on startup, so if you ensure the vent is indeed closed at this point AND only use this plugin to open/close, the state will remain in sync.
Otherwise, you can use a separate Homekit sensor to maintain track of the vent comfort state.
Installation
- Install Homebridge using:
npm install -g homebridge
- Install this plugin using:
npm install -g homebridge-velux-kfx210
- Update your configuration file. See a sample
config.json
snippet below.
Configuration
Example config.json
entry:
"platforms": [
{
"platform": "KFX210",
"state_poll_interval": 3,
"comfort_switch_time": 0.5,
"python_path": "/usr/local/python"
}
]
Where:
state_poll_interval
is the polling interval in seconds for thealarm
anderror
states. Default is3
.comfort_switch_time
is the time in seconds for the comfort open or close relay to be switched on. Default is0.5
.python_path
is the path to python for invoking automation HAT API. Default is/usr/bin/python
.
NOTE: The comfort_switch_time
should be set to 0.5 seconds to simulate a momentary push of a comfort button.
Any longer and it will be treated as a button hold and therefore should be set to several seconds.
Velux Integration
The pinout for the Automation HAT is available here
The installation manual for Velux control panel (PDF) provides connector block information.
- Connect 5V from Automation HAT to the Common Terminals on Alarm (terminal 4) and Error (terminal 2) Velux connector blocks.
- Connect Alarm output (terminal 5) on Alarm Velux connector block to Buffered Input 1 on the Automation HAT.
- Connect Error output (terminal 3) on Error Velux connector block to Buffered Input 2 on the Automation HAT.
- Connect terminal 1 on Comfort Velux connector block to Normally Open Relay 1 on the Automation HAT.
- Connect terminal 2 on Comfort Velux connector block to Normally Open Relay 2 on the Automation HAT.
- Connect terminal 3 on Comfort Velux connector block to Common on Relay 1 and Relay 2 on the Automation HAT.