From d112800dc3a50e1dee22669d3f8ba962f9a9730f Mon Sep 17 00:00:00 2001 From: Stephan Hadinger Date: Thu, 4 Aug 2022 18:33:31 +0200 Subject: [PATCH] Zigbee add received commands as battery auto-probe triggers --- tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_8_parsers.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_8_parsers.ino b/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_8_parsers.ino index a4c47f42c..fb7f8cdb7 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_8_parsers.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_8_parsers.ino @@ -1700,6 +1700,7 @@ void Z_IncomingMessage(class ZCLFrame &zcl_received) { zcl_received.parseWriteAttributesResponse(attr_list); } else if (zcl_received.isClusterSpecificCommand()) { zcl_received.parseClusterSpecificCommand(attr_list); + Z_Query_Battery(srcaddr); // do battery auto-probing when receiving commands } AddLog(LOG_LEVEL_DEBUG, PSTR(D_LOG_ZIGBEE D_JSON_ZIGBEEZCL_RAW_RECEIVED ": {\"0x%04X\":{%s}}"), srcaddr, attr_list.toString().c_str());