diff --git a/HMI/nspanel.HMI b/HMI/nspanel.HMI index 58860fa0..94d0497b 100644 Binary files a/HMI/nspanel.HMI and b/HMI/nspanel.HMI differ diff --git a/HMI/nspanel.tft b/HMI/nspanel.tft index 8ac4aeb0..c53c2ef7 100644 Binary files a/HMI/nspanel.tft and b/HMI/nspanel.tft differ diff --git a/apps/nspanel-lovelace-ui/luibackend/pages.py b/apps/nspanel-lovelace-ui/luibackend/pages.py index dde044b2..90b471a6 100644 --- a/apps/nspanel-lovelace-ui/luibackend/pages.py +++ b/apps/nspanel-lovelace-ui/luibackend/pages.py @@ -281,7 +281,7 @@ class LuiPagesGen(object): current_temp = get_attr_safe(entity, "current_temperature", "") dest_temp = int(get_attr_safe(entity, "temperature", 0)*10) status = get_attr_safe(entity, "hvac_action", "") - state_value = f"{get_translation(self._locale,status)} ({get_translation(self._locale,entity.state)})" + state_value = f"{get_translation(self._locale,status)} \n ({get_translation(self._locale,entity.state)})" min_temp = int(get_attr_safe(entity, "min_temp", 0)*10) max_temp = int(get_attr_safe(entity, "max_temp", 0)*10) step_temp = int(get_attr_safe(entity, "target_temp_step", 0.5)*10)