diff --git a/src/devices/boiler.cpp b/src/devices/boiler.cpp index 8a7a287de..95f21ca84 100644 --- a/src/devices/boiler.cpp +++ b/src/devices/boiler.cpp @@ -578,7 +578,12 @@ Boiler::Boiler(uint8_t device_type, int8_t device_id, uint8_t product_id, const FL_(wwSelTempSingle), DeviceValueUOM::DEGREES, MAKE_CF_CB(set_ww_temp_single)); - register_device_value(DeviceValueTAG::TAG_BOILER_DATA_WW, &wwSolarTemp_, DeviceValueType::USHORT, DeviceValueNumOp::DV_NUMOP_DIV10, FL_(wwSolarTemp), DeviceValueUOM::DEGREES); + register_device_value(DeviceValueTAG::TAG_BOILER_DATA_WW, + &wwSolarTemp_, + DeviceValueType::USHORT, + DeviceValueNumOp::DV_NUMOP_DIV10, + FL_(wwSolarTemp), + DeviceValueUOM::DEGREES); register_device_value(DeviceValueTAG::TAG_BOILER_DATA_WW, &wwType_, DeviceValueType::ENUM, FL_(enum_flow), FL_(wwType), DeviceValueUOM::NONE); register_device_value(DeviceValueTAG::TAG_BOILER_DATA_WW, &wwComfort_, diff --git a/src/system.cpp b/src/system.cpp index b6a39c5a2..9685a7491 100644 --- a/src/system.cpp +++ b/src/system.cpp @@ -742,7 +742,7 @@ void System::led_monitor() { pixels.setPixelColor(0, 0, 0, 0); pixels.show(); #else - digitalWrite(led_gpio_, !LED_ON); // LED off + digitalWrite(led_gpio_, !LED_ON); // LED off #endif } else if (led_flash_step_ % 2) { // handle the step events (on odd numbers 3,5,7,etc). see if we need to turn on a LED