homebridge-rfxcom-devices
Version:
It is simple Homebridge platform plugin allowing 433mhz RF device support to Homekit.
79 lines (68 loc) • 3.05 kB
Markdown
# Homebridge RFXCom Devices
     [](http://creativecommons.org/licenses/by-nc-sa/4.0/)
This Homebridge platform plugin allowing 433mhz RF device support to Homekit.
You need RF Gateway, personaly I used RFXtrx433XL (http://www.rfxcom.com/RFXtrx433XL).
## 🔌 Supported devices
At is moment, this plugin only works with **Chacon Dio devices** like :
* DoorBell Kit CH84201
* Micro Module DIO Transmitter CH54700
Currently, you can control any devices listed behind has Homekit Programmable Stateless buttons.
## 💻 Development
If your are a developer and you want contribute for increase rf devices integration, join to me !
Clone the repo and send me pull requests.
## 🛠 Configure your plugin
This is a simple plugin configuration, you need to register your plugin in homebridge platforms.
```json
{
"name": "Homebridge RFXCom Dio Button",
"serialport": "/dev/tty.usbserial-A129KNRC",
"platform": "HomebridgeRFXComDevices",
"devices": [
{
"uniqueid": "0x0235A99E",
"rfid": "0x0235A99E",
"type": "button",
"name": "Bouton murale chambre/couloir",
"manufacturer": "CHACON DiO",
"model": "54700",
"firmwarerevision": "0.1",
"serialnumber": "0003",
"entriesid": "unitCode",
"entries": {
"1": {
"name": "command",
"buttons": [
"On",
"Off"
]
},
"2": {
"name": "command",
"buttons": [
"On",
"Off"
]
}
}
},
{
"uniqueid": "0x01CC19BE",
"rfid": "0x01CC19BE",
"type": "button",
"name": "Bouton murale sonette",
"manufacturer": "CHACON DiO",
"model": "CH84201",
"firmwarerevision": "0.1",
"serialnumber": "0004",
"entriesid": "unitCode",
"entries": {
"1": {
"name": "command",
"buttons": [
"Group On"
]
}
}
}
]
}