mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 08:19:52 +03:00
MM100 EMS_TYPE_MMPLUSStatusMessage added
This commit is contained in:
@@ -449,10 +449,11 @@ void showInfo() {
|
||||
myDebug_P(PSTR(" %d external temperature sensor%s found"), EMSESP_Settings.dallas_sensors, (EMSESP_Settings.dallas_sensors == 1) ? "" : "s");
|
||||
}
|
||||
|
||||
myDebug_P(PSTR(" Boiler is %s, Thermostat is %s, Solar Module is %s, Shower Timer is %s, Shower Alert is %s"),
|
||||
myDebug_P(PSTR(" Boiler is %s, Thermostat is %s, Solar Module is %s, Mixing Module is %s, Shower Timer is %s, Shower Alert is %s"),
|
||||
(ems_getBoilerEnabled() ? "enabled" : "disabled"),
|
||||
(ems_getThermostatEnabled() ? "enabled" : "disabled"),
|
||||
(ems_getSolarModuleEnabled() ? "enabled" : "disabled"),
|
||||
(ems_getMixingDeviceEnabled() ? "enabled" : "disabled"),
|
||||
((EMSESP_Settings.shower_timer) ? "enabled" : "disabled"),
|
||||
((EMSESP_Settings.shower_alert) ? "enabled" : "disabled"));
|
||||
|
||||
@@ -666,6 +667,19 @@ void showInfo() {
|
||||
}
|
||||
}
|
||||
|
||||
// Mixing modules sensors
|
||||
if (ems_getMixingDeviceEnabled()) {
|
||||
myDebug_P(PSTR("")); // newline
|
||||
myDebug_P(PSTR("%sMixing module stats:%s"), COLOR_BOLD_ON, COLOR_BOLD_OFF);
|
||||
|
||||
for (uint8_t hc_num = 1; hc_num <= EMS_THERMOSTAT_MAXHC; hc_num++) {
|
||||
if (EMS_Mixing.hc[hc_num - 1].active) {
|
||||
myDebug_P(PSTR(" Mixing Circuit %d"), hc_num);
|
||||
_renderShortValue(" Current flow temperature", "C", EMS_Mixing.hc[hc_num - 1].flowTemp);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Dallas external temp sensors
|
||||
if (EMSESP_Settings.dallas_sensors != 0) {
|
||||
myDebug_P(PSTR("")); // newline
|
||||
|
||||
Reference in New Issue
Block a user