You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Flashing 


Bin:

https://github.com/arendst/Tasmota/releases/download/v9.5.0/tasmota-zbbridge.bin


Wiring:



Flash Zigbee Chip

https://zigbee.blakadder.com/Sonoff_ZBBridge.html


Homebridge Integration




MQTT

Configure your bridge device for MQTT:

After configuring you will have messages being sent to MQTT on various topics:

  • tele/zigbee/SENSOR
  • tele/zigbee/RESULT


Homebridge

Motion Sensor - Sonoff Model SNZB-03

MQTT Message

JSON Message sent via MQTT on topic tele/zigbee/SENSOR

{
   "ZbReceived":{
      "0x6373":{
         "Device":"0x6373",
         "0500<00":"000000010000",
         "ZoneStatusChange":0,
         "ZoneStatusChangeZone":1,
         "Occupancy":0,
         "Endpoint":1,
         "LinkQuality":136
      }
   }
}


Homebridge Configuration

       {
            "accessory": "mqttthing",
            "type": "occupancySensor",
            "name": "sonoff-occupancy",
            "url": "http://192.168.1.50:1883",
            "topics":
            {
                "getOccupancyDetected": {
                     "topic": "tele/zigbee/SENSOR",
                     "apply": "return JSON.parse(message).ZbReceived['0x6373'].Occupancy;"

                 }
            },
            "integerValue": "true"
        },


Switch - IKEA Tradfri ON/OFF Switch

MQTT Message

JSON Message sent via MQTT on topic tele/zigbee/SENSOR

{
   "ZbReceived":{
      "0x0321":{
         "Device":"0x0321",
         "0006!00":"",
         "Power":0,
         "Endpoint":1,
         "LinkQuality":102
      }
   }
}

Homebridge Configuration

       {
            "accessory": "mqttthing",
            "type": "switch",
            "name": "sonoff-occupancy",
            "url": "http://192.168.1.50:1883",
            "topics":
            {
                "getOn": {
                     "topic": "tele/zigbee/SENSOR",
                     "apply": "return JSON.parse(message).ZbReceived['0x0321'].Power;"

                 }
            },
            "integerValue": "true"
        },

References

ReferenceURL
Sonoff Zigbee Bridge | How to flash with Tasmota and setup in Home Assistant with ZHAhttps://www.youtube.com/watch?v=SDynPbCGvS0
Tasmota Releaseshttps://github.com/arendst/Tasmota/releases
Tasmota Zigbeehttps://tasmota.github.io/docs/Zigbee/
  • No labels