https://github.com/dimer47/homebridge-rfxcom-devices
It is simple Homebridge platform plugin allowing 433mhz RF device support to Homekit.
https://github.com/dimer47/homebridge-rfxcom-devices
homebridge homebridge-plugin homekit rfxcom
Last synced: about 1 month ago
JSON representation
It is simple Homebridge platform plugin allowing 433mhz RF device support to Homekit.
- Host: GitHub
- URL: https://github.com/dimer47/homebridge-rfxcom-devices
- Owner: dimer47
- License: other
- Created: 2021-01-24T15:26:54.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-15T21:23:00.000Z (almost 4 years ago)
- Last Synced: 2025-03-24T18:17:31.767Z (about 2 months ago)
- Topics: homebridge, homebridge-plugin, homekit, rfxcom
- Language: TypeScript
- Homepage:
- Size: 21.5 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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 CH54700Currently, 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"
]
}
}
}
]
}