Merge branch 'esp32_dev' of https://github.com/proddy/EMS-ESP into esp32_dev

This commit is contained in:
proddy
2021-02-23 14:11:07 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -145,11 +145,11 @@ void Mixer::process_IPMStatusMessage(std::shared_ptr<const Telegram> telegram) {
// do we have a mixed circuit
if (ismixed == 2) {
has_update(telegram->read_value(flowTemp_, 3)); // is * 10
has_update(telegram->read_value(flowSetTemp_, 5));
has_update(telegram->read_value(status_, 2)); // valve status
}
has_update(telegram->read_bitvalue(pumpStatus_, 1, 0)); // pump is also in unmixed circuits
has_update(telegram->read_value(flowSetTemp_, 5)); // flowSettemp is also in unmixed circuits, see #711
}
// Mixer on a MM10 - 0xAB

View File

@@ -373,7 +373,7 @@ void System::show_mem(const char * note) {
// send periodic MQTT message with system information
void System::send_heartbeat() {
// don't send heartbeat if WiFi or MQTT is connected
// don't send heartbeat if WiFi or MQTT is not connected
if (!Mqtt::connected()) {
return;
}