Bonjour
J’ai connecté ma chaudière Axeo Condens sur HA avec BSB-LAN, j’ai des thermostats d’ambiance T55 et T58, J’aimerai pouvoir changer les icones et le texte dans le thermostat qui sont proposés dans le thermostat climat, le pb c’est que je n’arrive pas à les personnaliser.
Voici ce que j’ai réussi a faire
J’aimerai pouvoir changer l’icone « climatisation » par une icone « croissant de lune » et changer le texte « climatisation » par « Réduit » et le texte « Chauffage » par « Confort »
Si quelqu’un a une Idée
Voici ma config yaml
- name: "Thermostat Maison"
unique_id: "Thermostat_Maison"
device:
identifiers: BSB-LAN-A842E3CA0E60
manufacturer: bsb-lan.de
model: 4.2.16
name: BSB-LAN
payload_on: 1
payload_off: 0
modes:
# - auto
- heat
- cool
- 'off'
mode_state_topic: BSB-LAN/0/8/700/status
mode_state_template: >-
{% set values = { '0 - Mode protection':'off', '1 - Automatique':'auto', '2 - Réduit':'cool', '3 - Confort':'heat'} %}
{{ values[value] if value in values.keys() else 'off' }}
mode_command_topic: BSB-LAN
mode_command_template: >-
{% set values = { 'off':'S700=0', 'auto':'S700=1', 'cool':'S700=2', 'heat':'S700=3'} %}
{{ values[value] if value in values.keys() else '0' }}
current_temperature_topic: BSB-LAN/0/21/8740/status
min_temp: 17
max_temp: 23
temp_step: 0.5
temperature_high_command_topic: BSB-LAN
temperature_high_command_template: "{{'S710='+ (value | string)}}"
temperature_high_state_topic: BSB-LAN/0/8/710/status
temperature_low_command_topic: BSB-LAN
temperature_low_command_template: "{{'S712='+ (value | string)}}"
temperature_low_state_topic: BSB-LAN/0/8/712/status
################# Thermostat Chauffage Gite ###################
- name: "Thermostat Gite"
unique_id: "Thermostat_Gite"
device:
identifiers: BSB-LAN-A842E3CA0E60
manufacturer: bsb-lan.de
model: 4.2.16
name: BSB-LAN
payload_on: 1
payload_off: 0
modes:
# - auto
- heat
- cool
- 'off'
mode_state_topic: BSB-LAN/0/9/1000/status
mode_state_template: >-
{% set values = { '0 - Mode Protection':'off', '1 - Automatique':'auto', '2 - Réduit':'cool', '3 - Confort':'heat'} %}
{{ values[value] if value in values.keys() else 'off' }}
mode_command_topic: BSB-LAN
mode_command_template: >-
{% set values = { 'off':'S1000=0', 'auto':'S1000=1', 'cool':'S1000=2', 'heat':'S1000=3'} %}
{{ values[value] if value in values.keys() else '0' }}
current_temperature_topic: BSB-LAN/0/21/8770/status
min_temp: 16
max_temp: 21
temp_step: 0.5
temperature_high_command_topic: BSB-LAN
temperature_high_command_template: "{{'S1010='+ (value | string)}}"
temperature_high_state_topic: BSB-LAN/0/9/1010/status
temperature_low_command_topic: BSB-LAN
temperature_low_command_template: "{{'S1012='+ (value | string)}}"
temperature_low_state_topic: BSB-LAN/0/9/1012/status
Merci pour votre aide