I'm just getting started with Tasmota on a Sonarr Zigbee Bridge and trying to interpret the data it spits out. Here's an example:
{
"ZbReceived": {
"0x11FE": {
"Device": "0x11FE",
"Name": "DoorContact",
"Power": 1,
"Endpoint": 1,
"LinkQuality": 147
}
}
}
How do I address the info in here, without knowing/using the device number("0x11Fe") - for example, I want to get the device name, power setting, etc.
I was hoping I could do something like ZbReceived[1].Name, but that doesn't work.
Suggestions?