From 0e563e91b137f93341ebd13f1ab139b40989f14e Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Tue, 21 Jun 2022 06:37:47 +0200 Subject: [PATCH] burner max power to 254%, fix #553 --- src/devices/boiler.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/devices/boiler.cpp b/src/devices/boiler.cpp index 557d12bdc..6a5ca5ccc 100644 --- a/src/devices/boiler.cpp +++ b/src/devices/boiler.cpp @@ -114,7 +114,7 @@ Boiler::Boiler(uint8_t device_type, int8_t device_id, uint8_t product_id, const DeviceValueUOM::PERCENT, MAKE_CF_CB(set_burn_power), 0, - 130); + 254); register_device_value(DeviceValueTAG::TAG_DEVICE_DATA, &heatingPumpMod_, DeviceValueType::UINT, nullptr, FL_(heatingPumpMod), DeviceValueUOM::PERCENT); register_device_value(DeviceValueTAG::TAG_DEVICE_DATA, &heatingPump2Mod_, DeviceValueType::UINT, nullptr, FL_(heatingPump2Mod), DeviceValueUOM::PERCENT); register_device_value(DeviceValueTAG::TAG_DEVICE_DATA, &outdoorTemp_, DeviceValueType::SHORT, FL_(div10), FL_(outdoorTemp), DeviceValueUOM::DEGREES); @@ -168,7 +168,7 @@ Boiler::Boiler(uint8_t device_type, int8_t device_id, uint8_t product_id, const DeviceValueUOM::PERCENT, MAKE_CF_CB(set_max_power), 0, - 130); + 254); register_device_value( DeviceValueTAG::TAG_DEVICE_DATA, &boilHystOn_, DeviceValueType::INT, nullptr, FL_(boilHystOn), DeviceValueUOM::DEGREES_R, MAKE_CF_CB(set_hyst_on)); register_device_value( @@ -440,7 +440,7 @@ Boiler::Boiler(uint8_t device_type, int8_t device_id, uint8_t product_id, const DeviceValueUOM::PERCENT, MAKE_CF_CB(set_ww_maxpower), 0, - 130); + 254); register_device_value(DeviceValueTAG::TAG_BOILER_DATA_WW, &wwMaxTemp_, DeviceValueType::UINT,