From 591a81b22a4fa5b580f777f40acaa6ae41a83964 Mon Sep 17 00:00:00 2001 From: proddy Date: Sat, 27 Jun 2020 22:50:30 +0200 Subject: [PATCH] text change --- src/devices/thermostat.cpp | 2 +- src/emsdevice.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/thermostat.cpp b/src/devices/thermostat.cpp index 899afc518..42d86d839 100644 --- a/src/devices/thermostat.cpp +++ b/src/devices/thermostat.cpp @@ -1060,7 +1060,7 @@ void Thermostat::process_RC300Monitor(std::shared_ptr telegram) std::shared_ptr hc = heating_circuit(telegram); telegram->read_value(hc->curr_roomTemp, 0); // is * 10 - + telegram->read_bitvalue(hc->mode_type, 10, 1); telegram->read_bitvalue(hc->mode, 10, 0); // bit 1, mode (auto=1 or manual=0) diff --git a/src/emsdevice.cpp b/src/emsdevice.cpp index cd6f94797..a1bd58acf 100644 --- a/src/emsdevice.cpp +++ b/src/emsdevice.cpp @@ -249,7 +249,7 @@ bool EMSdevice::handle_telegram(std::shared_ptr telegram) { return false; } - LOG_DEBUG(F("Processing %s..."), uuid::read_flash_string(tf.telegram_type_name_).c_str()); + LOG_DEBUG(F("Decoding %s"), uuid::read_flash_string(tf.telegram_type_name_).c_str()); tf.process_function_(telegram); return true; }