From 44afa1a30fe380d0f25dc2ee47807a45be4a9e29 Mon Sep 17 00:00:00 2001 From: Proddy Date: Sun, 5 Nov 2023 17:09:36 +0100 Subject: [PATCH] auto formatting --- src/devices/alert.cpp | 6 ++---- src/devices/boiler.cpp | 2 +- src/roomcontrol.cpp | 2 +- src/web/WebStatusService.cpp | 4 +++- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/devices/alert.cpp b/src/devices/alert.cpp index bb1ef3af3..c297192c2 100644 --- a/src/devices/alert.cpp +++ b/src/devices/alert.cpp @@ -24,7 +24,6 @@ REGISTER_FACTORY(Alert, EMSdevice::DeviceType::ALERT); Alert::Alert(uint8_t device_type, uint8_t device_id, uint8_t product_id, const char * version, const char * name, uint8_t flags, uint8_t brand) : EMSdevice(device_type, device_id, product_id, version, name, flags, brand) { - // EM10, device-id 0x12, listens to error messages, measures voltage input and send 0x1A to the boiler. // values already shown in boiler // see https://github.com/emsesp/EMS-ESP32/issues/575 @@ -32,11 +31,10 @@ Alert::Alert(uint8_t device_type, uint8_t device_id, uint8_t product_id, const c register_device_value(DeviceValueTAG::TAG_DEVICE_DATA, &setFlowTemp_, DeviceValueType::UINT, FL_(setFlowTemp), DeviceValueUOM::DEGREES); register_device_value(DeviceValueTAG::TAG_DEVICE_DATA, &setBurnPow_, DeviceValueType::UINT, FL_(setBurnPow), DeviceValueUOM::PERCENT); - } // UBASetPoint 0x1A void Alert::process_UBASetPoints(std::shared_ptr telegram) { - has_update(telegram, setFlowTemp_, 0); // boiler set temp from thermostat - has_update(telegram, setBurnPow_, 1); // max burner power in % + has_update(telegram, setFlowTemp_, 0); // boiler set temp from thermostat + has_update(telegram, setBurnPow_, 1); // max burner power in % } } // namespace emsesp \ No newline at end of file diff --git a/src/devices/boiler.cpp b/src/devices/boiler.cpp index 330eb6cef..199dfeb51 100644 --- a/src/devices/boiler.cpp +++ b/src/devices/boiler.cpp @@ -1269,7 +1269,7 @@ void Boiler::process_UBAMonitorFastPlus(std::shared_ptr telegram has_update(telegram, heatblock_, 23); // see #1317 has_update(telegram, headertemp_, 25); // see #1317 //has_update(telegram, temperatur_, 27); // unknown temperature - telegram->read_value(exhaustTemp1_ , 31); + telegram->read_value(exhaustTemp1_, 31); if (Helpers::hasValue(exhaustTemp1_)) { has_update(exhaustTemp_, exhaustTemp1_); } diff --git a/src/roomcontrol.cpp b/src/roomcontrol.cpp index b16407867..f3faece46 100644 --- a/src/roomcontrol.cpp +++ b/src/roomcontrol.cpp @@ -108,7 +108,7 @@ void Roomctrl::send(const uint8_t addr) { } else if (type_ == FB10) { rc_time_[hc] = uuid::get_uptime(); temperature(addr, 0x10, hc); // send to master-thermostat (https://github.com/emsesp/EMS-ESP32/issues/336) - } else { // type==RC20 + } else { // type==RC20 rc_time_[hc] = uuid::get_uptime(); temperature(addr, 0x00, hc); // send to all } diff --git a/src/web/WebStatusService.cpp b/src/web/WebStatusService.cpp index 06714343b..59272fc50 100644 --- a/src/web/WebStatusService.cpp +++ b/src/web/WebStatusService.cpp @@ -36,7 +36,9 @@ void WebStatusService::WiFiEvent(WiFiEvent_t event, WiFiEventInfo_t info) { switch (event) { case ARDUINO_EVENT_WIFI_STA_DISCONNECTED: - EMSESP::logger().warning("WiFi disconnected. Reason: %s (%d)", disconnectReason(info.wifi_sta_disconnected.reason), info.wifi_sta_disconnected.reason); // IDF 4.0 + EMSESP::logger().warning("WiFi disconnected. Reason: %s (%d)", + disconnectReason(info.wifi_sta_disconnected.reason), + info.wifi_sta_disconnected.reason); // IDF 4.0 EMSESP::system_.has_ipv6(false); break;