homebridge-enocean
v0.1.1
Published
a simple way to bridge your enocean switches to Homekit
Downloads
6
Maintainers
Readme
homebridge-enocean
A simple way to bridge your EnOcean switches to Homekit
Currently only rocker switches PTM210 and PTM215 (in normal mode) are supported. This corresponds to the EnOcean EEP F6-02-01.
To use this you need a USB300 or TCM310 module connected to your homebridge computer.
To use it add this to your config.json
:
{
"platforms": [
{
"name": "EnOcean",
"platform": "enocean",
"port": "/dev/ttyUSB0", // port to your USB300 or TCM310 module
"accessories": [
{
"id": "aabbccdd", // sender id in lowercase. See sticker on the back
"eep": "f6-02-01", // rocker switch profile
"name": "Kitchen switch" // name for this switch
}
]
}
]
}