mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-09 01:09:51 +03:00
update hybrid heatpump #459
This commit is contained in:
@@ -193,6 +193,15 @@ class Boiler : public EMSdevice {
|
||||
// Pool unit
|
||||
int8_t poolSetTemp_;
|
||||
|
||||
// HybridHP
|
||||
uint8_t gasPriceMode_; // cost = 2, temperature = 3, mix = 4
|
||||
uint8_t switchOverTemp_; // degrees
|
||||
uint8_t gasPriceRatio_; // is *10
|
||||
uint8_t fossileFactor_; // is * 10
|
||||
uint8_t electricFactor_; // is * 10
|
||||
uint8_t waitBoiler_; // minutes
|
||||
uint8_t tempDiffBoiler_; // relative temperature degrees
|
||||
|
||||
void process_UBAParameterWW(std::shared_ptr<const Telegram> telegram);
|
||||
void process_UBAMonitorFast(std::shared_ptr<const Telegram> telegram);
|
||||
void process_UBATotalUptime(std::shared_ptr<const Telegram> telegram);
|
||||
@@ -221,6 +230,7 @@ class Boiler : public EMSdevice {
|
||||
void process_HpPower(std::shared_ptr<const Telegram> telegram);
|
||||
void process_HpOutdoor(std::shared_ptr<const Telegram> telegram);
|
||||
void process_HpPool(std::shared_ptr<const Telegram> telegram);
|
||||
void process_HybridHp(std::shared_ptr<const Telegram> telegram);
|
||||
|
||||
// commands - none of these use the additional id parameter
|
||||
bool set_ww_mode(const char * value, const int8_t id);
|
||||
@@ -256,6 +266,14 @@ class Boiler : public EMSdevice {
|
||||
bool set_ww_hyst_on(const char * value, const int8_t id);
|
||||
bool set_ww_hyst_off(const char * value, const int8_t id);
|
||||
bool set_pool_temp(const char * value, const int8_t id);
|
||||
|
||||
bool set_gasPriceMode(const char * value, const int8_t id);
|
||||
bool set_switchOverTemp(const char * value, const int8_t id);
|
||||
bool set_gasPriceRatio(const char * value, const int8_t id);
|
||||
bool set_fossileFactor(const char * value, const int8_t id);
|
||||
bool set_electricFactor(const char * value, const int8_t id);
|
||||
bool set_waitBoiler(const char * value, const int8_t id);
|
||||
bool set_tempDiffBoiler(const char * value, const int8_t id);
|
||||
};
|
||||
|
||||
} // namespace emsesp
|
||||
|
||||
Reference in New Issue
Block a user