From 0e0aaf37df1039f0da1683963d1313b13001d41a Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Sun, 25 Jan 2026 19:21:59 +0100 Subject: [PATCH] add climate modes night/eco as off --- src/core/mqtt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/mqtt.cpp b/src/core/mqtt.cpp index 4868084fd..ea1e58f42 100644 --- a/src/core/mqtt.cpp +++ b/src/core/mqtt.cpp @@ -1446,7 +1446,7 @@ bool Mqtt::publish_ha_climate_config(const DeviceValue & dv, const bool has_room found_auto = true; } else if (!strcmp(mode, FL_(heat)[0]) || !strcmp(mode, FL_(day)[0]) || !strcmp(mode, FL_(manual)[0])) { found_heat = true; // we map day and manual to heat - } else if (!strcmp(mode, FL_(off)[0])) { + } else if (!strcmp(mode, FL_(off)[0]) || !strcmp(mode, FL_(night)[0]) || !strcmp(mode, FL_(eco)[0])) { found_off = true; } else if (!strcmp(mode, FL_(cool)[0])) { found_cool = true;