mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
Merge branch 'dev' into dev2
This commit is contained in:
@@ -155,6 +155,14 @@ class Boiler : public EMSdevice {
|
||||
uint16_t headertemp_; // see #1317
|
||||
uint16_t heatblock_; // see #1317
|
||||
|
||||
// weather compensation, see #1642
|
||||
uint8_t curveOn_;
|
||||
uint8_t curveBase_;
|
||||
uint8_t curveEnd_;
|
||||
uint8_t summerTemp_;
|
||||
uint8_t nofrost_;
|
||||
uint8_t nofrostTemp_;
|
||||
|
||||
// info
|
||||
uint32_t upTimeTotal_; // Operating time
|
||||
uint32_t upTimeControl_; // Operating time control
|
||||
@@ -355,6 +363,7 @@ class Boiler : public EMSdevice {
|
||||
void process_HpSettings3(std::shared_ptr<const Telegram> telegram);
|
||||
void process_HpEnergy(std::shared_ptr<const Telegram> telegram);
|
||||
void process_HpMeters(std::shared_ptr<const Telegram> telegram);
|
||||
void process_WeatherComp(std::shared_ptr<const Telegram> telegram);
|
||||
// HIU
|
||||
void process_HIUSettings(std::shared_ptr<const Telegram> telegram);
|
||||
void process_HIUMonitor(std::shared_ptr<const Telegram> telegram);
|
||||
@@ -536,6 +545,12 @@ class Boiler : public EMSdevice {
|
||||
bool set_delayBoiler(const char * value, const int8_t id);
|
||||
bool set_tempDiffBoiler(const char * value, const int8_t id);
|
||||
*/
|
||||
bool set_curveOn(const char * value, const int8_t id);
|
||||
bool set_curveBase(const char * value, const int8_t id);
|
||||
bool set_curveEnd(const char * value, const int8_t id);
|
||||
bool set_summerTemp(const char * value, const int8_t id);
|
||||
bool set_nofrost(const char * value, const int8_t id);
|
||||
bool set_nofrostTemp(const char * value, const int8_t id);
|
||||
|
||||
bool set_nrgHeat(const char * value, const int8_t id);
|
||||
bool set_nrgWw(const char * value, const int8_t id);
|
||||
|
||||
Reference in New Issue
Block a user