Oui, tu peux faire plus simple et moins redondant si c’est juste pour changer l’icône.
Il te suffit de passer par `customize’
sensor.temperature_salon: templates: friendly_name: Température Salon icon: if (entities['input_select.chauffage_salon'].state === 'Off') return 'mdi:power'; if (entities['input_select.chauffage_salon'].state === 'Eco') return 'mdi:weather-night'; if (entities['input_select.chauffage_salon'].state === 'Confort') return 'mdi:fire'; if (entities['input_select.chauffage_salon'].state === 'Hors-gel') return 'mdi:snowflake-alert'; if (entities['input_boolean.heating_room_salon'].state === 'off') return 'mdi:weather-night'; if (entities['input_boolean.heating_room_salon'].state === 'on') return 'mdi:fire';