How to add paired device to Accessories in Homebridge #107
-
Hi, First of all I would like to mention that I am still a newbie in Homebridge. I managed to configure Homebridge on Raspberry Pi, connected Zigbee CC2531 USB dongle and managed to pair new device which is Zigbee Wall Switch. I have attached a screenshot how device looks like in "Paired devices" section. My questions is, how I can make this device visible in "Accessories" section in Homebridge? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
OK. I managed to add the device it was as simple as adding additional code: "devices": [ |
Beta Was this translation helpful? Give feedback.
OK. I managed to add the device it was as simple as adding additional code:
"devices": [
{
"manufacturer": "TUYATEC-p9HCE8pZ",
"models": [
"TS0011"
],
"services": [
{
"type": "bulb",
"meta": {
"brightness": true
}
}
]
}
]