set reportableChange default value to 1 to avoid report flooding (#1293)

This commit is contained in:
Martin Helff
2019-03-21 19:43:15 +01:00
committed by Koen Kanters
parent 2af2a8ea05
commit e5081b2856
+1 -1
View File
@@ -21,7 +21,7 @@ const reportInterval = {
max: 3600,
};
const reportableChange = 0;
const reportableChange = 1;
class DeviceReport {
constructor(zigbee, mqtt, state, publishEntityState) {