Another try for solving exceptions 28

Another try for solving exceptions 28 (#14067)
This commit is contained in:
Theo Arends 2021-12-24 17:05:53 +01:00
parent e5463782e7
commit 18003e0ee6
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ bool Rg15Poll(void) {
if (++Rg15.time == RG15_EVENT_TIMEOUT) { if (++Rg15.time == RG15_EVENT_TIMEOUT) {
Rg15.acc = 0; Rg15.acc = 0;
Rg15.rate = 0; Rg15.rate = 0;
// MqttPublishSensor(); MqttPublishSensor();
} }
return false; return false;
@ -96,7 +96,7 @@ bool Rg15Poll(void) {
Rg15Process(rg15_buffer); Rg15Process(rg15_buffer);
} }
// MqttPublishSensor(); MqttPublishSensor();
return true; return true;
} }