diff --git a/tasmota/CHANGELOG.md b/tasmota/CHANGELOG.md
index e45d2efce..828b5d515 100644
--- a/tasmota/CHANGELOG.md
+++ b/tasmota/CHANGELOG.md
@@ -3,6 +3,7 @@
### 7.1.2.6 20191214
- Change some more Settings locations freeing up space for future single char allowing variable length text
+- Add Zigbee send automatic ZigbeeRead after sending a command
### 7.1.2.5 20191213
diff --git a/tasmota/xdrv_23_zigbee_0_constants.ino b/tasmota/xdrv_23_zigbee_0_constants.ino
index 996d877f8..0c74c9d8a 100644
--- a/tasmota/xdrv_23_zigbee_0_constants.ino
+++ b/tasmota/xdrv_23_zigbee_0_constants.ino
@@ -19,8 +19,6 @@
#ifdef USE_ZIGBEE
-#define ZIGBEE_VERBOSE // output versbose MQTT Zigbee logs. Will remain active for now
-
typedef uint64_t Z_IEEEAddress;
typedef uint16_t Z_ShortAddress;
diff --git a/tasmota/xdrv_23_zigbee_1_headers.ino b/tasmota/xdrv_23_zigbee_1_headers.ino
new file mode 100644
index 000000000..b017d8e2e
--- /dev/null
+++ b/tasmota/xdrv_23_zigbee_1_headers.ino
@@ -0,0 +1,26 @@
+/*
+ xdrv_23_zigbee_1_headers.ino - zigbee support for Tasmota
+
+ Copyright (C) 2019 Theo Arends and Stephan Hadinger
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+*/
+
+#ifdef USE_ZIGBEE
+
+// contains some definitions for functions used before their declarations
+
+void ZigbeeZCLSend(uint16_t dtsAddr, uint16_t clusterId, uint8_t endpoint, uint8_t cmdId, bool clusterSpecific, const uint8_t *msg, size_t len, bool disableDefResp = true, uint8_t transacId = 1);
+
+#endif // USE_ZIGBEE
diff --git a/tasmota/xdrv_23_zigbee_3_devices.ino b/tasmota/xdrv_23_zigbee_3_devices.ino
index f76c882c7..de13990c2 100644
--- a/tasmota/xdrv_23_zigbee_3_devices.ino
+++ b/tasmota/xdrv_23_zigbee_3_devices.ino
@@ -22,6 +22,9 @@
#include
#include