mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2026-03-15 22:26:31 +03:00
add baseflowtemp #2969
This commit is contained in:
@@ -65,7 +65,7 @@ class Thermostat : public EMSdevice {
|
||||
int16_t curroominfl;
|
||||
uint8_t flowtempoffset;
|
||||
uint8_t minflowtemp;
|
||||
uint8_t minflowtemp2 = EMS_VALUE_UINT8_NOTSET;
|
||||
uint8_t baseflowtemp;
|
||||
uint8_t maxflowtemp;
|
||||
uint8_t reducemode;
|
||||
uint8_t nofrostmode;
|
||||
@@ -170,6 +170,7 @@ class Thermostat : public EMSdevice {
|
||||
DAYMID,
|
||||
COOLTEMP,
|
||||
COOLSTART,
|
||||
BASEFLOW,
|
||||
UNKNOWN
|
||||
|
||||
};
|
||||
@@ -584,6 +585,9 @@ class Thermostat : public EMSdevice {
|
||||
inline bool set_minflowtemp(const char * value, const int8_t id) {
|
||||
return set_temperature_value(value, id, HeatingCircuit::Mode::MINFLOW);
|
||||
}
|
||||
inline bool set_baseflowtemp(const char * value, const int8_t id) {
|
||||
return set_temperature_value(value, id, HeatingCircuit::Mode::BASEFLOW);
|
||||
}
|
||||
inline bool set_roominfluence(const char * value, const int8_t id) {
|
||||
return set_temperature_value(value, id, HeatingCircuit::Mode::ROOMINFLUENCE, true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user