diff --git a/src/ems-esp.cpp b/src/ems-esp.cpp index 774abcc26..73de0c353 100644 --- a/src/ems-esp.cpp +++ b/src/ems-esp.cpp @@ -215,7 +215,7 @@ _EMS_THERMOSTAT_MODE _getThermostatDayMode(uint8_t hc_num) { // Info - display status and data on an 'info' command void showInfo() { - static char buffer_type[128] = {0}; + static char buffer_type[200] = {0}; myDebug_P(PSTR("%sEMS-ESP system status:%s"), COLOR_BOLD_ON, COLOR_BOLD_OFF); _EMS_SYS_LOGGING sysLog = ems_getLogging(); diff --git a/src/ems.cpp b/src/ems.cpp index 6144eec8b..b1d3a7cb1 100644 --- a/src/ems.cpp +++ b/src/ems.cpp @@ -2115,7 +2115,7 @@ bool ems_getDeviceTypeDescription(uint8_t device_id, char * buffer) { * returns current device details as a string for known thermostat,boiler,solar and heatpump */ char * ems_getDeviceDescription(_EMS_DEVICE_TYPE device_type, char * buffer, bool name_only) { - const uint8_t size = 128; + const uint8_t size = 200; bool enabled = false; uint8_t device_id; uint8_t product_id;