Updated Zigbee (markdown)

Michael Ingraham 2019-10-02 09:55:57 -04:00
parent 9b3f752270
commit 29fe8e023a
1 changed files with 19 additions and 5 deletions

@ -403,11 +403,25 @@ You can dump the internal information gathered about connected Zigbee devices wi
`ZigbeeDump`
Example (after pairing a Philips Hue Zigbee bulb):
`
18:04:46 MQT: stat/sonoff/Zigbee_home/RESULT = {"ZigbeeDump":{"ZigbeeDevices":{"0x3D82":{"ShortAddr":"0x3D82","IEEEAddr":"0017880102FE1DBD","Endpoints":["0x0B","0xF2"],"Clusters_in":{"0x0B":["0x0000","0x0003","0x0004","0x0005","0x0006","0x0008","0x1000"],"0xF2":["0x0021"]},"Clusters_out":{"0x0B":["0x0019"],"0xF2":["0x0021"]}}}}}
`
Example: Philips Hue Zigbee bulb (after pairing)
_formatted here for readability_
```json
MQT: stat/<topic>/RESULT =
{"ZigbeeDump":
{"ZigbeeDevices":
{"0x3D82":
{"ShortAddr":"0x3D82","IEEEAddr":"0017880102FE1DBD","Endpoints":["0x0B","0xF2"]
,"Clusters_in":
{"0x0B":["0x0000","0x0003","0x0004","0x0005","0x0006","0x0008","0x1000"],"0xF2":["0x0021"]
}
,"Clusters_out":
{"0x0B":["0x0019"],"0xF2":["0x0021"]
}
}
}
}
}
```
## Why another Zigbee project?
There are several excellent open-source Zigbee to MQTT solutions like the widely used [Zigbee2mqtt](https://www.zigbee2mqtt.io/) or [Aqara Hub](https://github.com/Frans-Willem/AqaraHub). Zigbee2mqtt is a comprehensive solution but requires at least a Raspberry Pi to run it. Z2T is a lightweight solution running on an ESP82xx Wi-Fi chip. Hence it is easier to deploy in your living room or around your home.