mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
add comment to boiler: hybrid heatpump
This commit is contained in:
@@ -90,6 +90,10 @@ Boiler::Boiler(uint8_t device_type, int8_t device_id, uint8_t product_id, const
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
* Hybrid heatpump with telegram 0xBB is readable and writeable in boiler and thermostat
|
||||||
|
* thermostat always overwrites settings in boiler
|
||||||
|
* enable settings here if no thermostat is used in system
|
||||||
|
*
|
||||||
if (model() == EMSdevice::EMS_DEVICE_FLAG_HYBRID) {
|
if (model() == EMSdevice::EMS_DEVICE_FLAG_HYBRID) {
|
||||||
register_telegram_type(0xBB, F("HybridHp"), true, MAKE_PF_CB(process_HybridHp));
|
register_telegram_type(0xBB, F("HybridHp"), true, MAKE_PF_CB(process_HybridHp));
|
||||||
}
|
}
|
||||||
@@ -204,6 +208,10 @@ Boiler::Boiler(uint8_t device_type, int8_t device_id, uint8_t product_id, const
|
|||||||
MAKE_CF_CB(set_maintenancedate));
|
MAKE_CF_CB(set_maintenancedate));
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
* Hybrid heatpump with telegram 0xBB is readable and writeable in boiler and thermostat
|
||||||
|
* thermostat always overwrites settings in boiler
|
||||||
|
* enable settings here if no thermostat is used in system
|
||||||
|
*
|
||||||
// Hybrid Heatpump
|
// Hybrid Heatpump
|
||||||
if (model() == EMSdevice::EMS_DEVICE_FLAG_HYBRID) {
|
if (model() == EMSdevice::EMS_DEVICE_FLAG_HYBRID) {
|
||||||
register_device_value(DeviceValueTAG::TAG_BOILER_DATA,
|
register_device_value(DeviceValueTAG::TAG_BOILER_DATA,
|
||||||
@@ -1065,6 +1073,10 @@ void Boiler::process_UBAMaintenanceData(std::shared_ptr<const Telegram> telegram
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
* Hybrid heatpump with telegram 0xBB is readable and writeable in boiler and thermostat
|
||||||
|
* thermostat always overwrites settings in boiler
|
||||||
|
* enable settings here if no thermostat is used in system
|
||||||
|
*
|
||||||
// 0xBB Heatpump optimization
|
// 0xBB Heatpump optimization
|
||||||
// Boiler(0x08) -> Me(0x0B), ?(0xBB), data: 00 00 00 00 00 00 00 00 00 00 00 FF 02 0F 1E 0B 1A 00 14 03
|
// Boiler(0x08) -> Me(0x0B), ?(0xBB), data: 00 00 00 00 00 00 00 00 00 00 00 FF 02 0F 1E 0B 1A 00 14 03
|
||||||
void Boiler::process_HybridHp(std::shared_ptr<const Telegram> telegram) {
|
void Boiler::process_HybridHp(std::shared_ptr<const Telegram> telegram) {
|
||||||
|
|||||||
@@ -193,8 +193,12 @@ class Boiler : public EMSdevice {
|
|||||||
// Pool unit
|
// Pool unit
|
||||||
int8_t poolSetTemp_;
|
int8_t poolSetTemp_;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// HybridHP
|
* Hybrid heatpump with telegram 0xBB is readable and writeable in boiler and thermostat
|
||||||
|
* thermostat always overwrites settings in boiler
|
||||||
|
* enable settings here if no thermostat is used in system
|
||||||
|
*
|
||||||
|
// HybridHP
|
||||||
uint8_t hybridStrategy_; // cost = 2, temperature = 3, mix = 4
|
uint8_t hybridStrategy_; // cost = 2, temperature = 3, mix = 4
|
||||||
int8_t switchOverTemp_; // degrees
|
int8_t switchOverTemp_; // degrees
|
||||||
uint8_t energyCostRatio_; // is *10
|
uint8_t energyCostRatio_; // is *10
|
||||||
|
|||||||
Reference in New Issue
Block a user