Bonjour, petite question car je ne comprends pas ce qu’il se passe.
Voici mon code Schedule_state :
- platform: schedule_state
name: "Chauffage du Salon"
default_state: "frost"
events:
- start: "00:00"
end: "01:30"
state: "boost"
- start: "01:30"
end: "11:00"
state: "eco"
- start: "11:00"
end: "19:00"
state: "comfort"
- start: "19:00"
end: "23:59"
state: "boost"
- state: "boost"
condition: &cond_all_open
- condition: state
entity_id: input_boolean.all_open
state: "on"
- state: "frost"
condition:
- condition: state
entity_id: binary_sensor.f_salon_g_contact
state: "on"
- state: "frost"
condition: &cond_presence
- condition: state
entity_id: input_boolean.presence
state: "off"
- platform: schedule_state
name: "Chauffage Ch BM"
default_state: "frost"
events:
- start: "00:00"
end: "01:30"
state: "boost"
- start: "01:30"
end: "08:00"
state: "eco"
- start: "08:00"
end: "18:00"
state: "comfort"
- start: "18:00"
end: "23:59"
state: "boost"
- state: "boost"
condition: *cond_all_open
- state: "frost"
condition:
- condition: state
entity_id: binary_sensor.f_ch_bm_contact
state: "on"
- state: "frost"
condition: *cond_presence
- platform: schedule_state
name: "Chauffage Ch Facade"
default_state: "frost"
events:
- start: "00:00"
end: "01:30"
state: "boost"
- start: "01:30"
end: "08:00"
state: "eco"
- start: "08:00"
end: "18:00"
state: "comfort"
- start: "18:00"
end: "23:59"
state: "boost"
- state: "boost"
condition: *cond_all_open
- state: "frost"
condition: *cond_presence
- platform: schedule_state
name: "Chauffage Cuisine"
default_state: "frost"
events:
- start: "00:00"
end: "01:00"
state: "boost"
- start: "01:00"
end: "08:30"
state: "eco"
- start: "08:30"
end: "19:30"
state: "comfort"
- start: "19:30"
end: "23:59"
state: "comfort"
- state: "boost"
condition: *cond_all_open
- state: "frost"
condition: *cond_presence
- platform: schedule_state
name: "Chauffage Gde Chambre"
default_state: "frost"
events:
- start: "00:00"
end: "01:00"
state: "boost"
- start: "01:00"
end: "08:30"
state: "eco"
- start: "08:30"
end: "19:30"
state: "comfort"
- start: "19:30"
end: "23:59"
state: "comfort"
- state: "boost"
condition: *cond_all_open
- state: "frost"
condition: *cond_presence
- platform: schedule_state
name: "Chauffage Sdb gde"
default_state: "frost"
events:
- start: "00:00"
end: "01:00"
state: "boost"
- start: "01:00"
end: "08:30"
state: "eco"
- start: "08:30"
end: "19:30"
state: "comfort"
- start: "19:30"
end: "23:59"
state: "comfort"
- state: "boost"
condition: *cond_all_open
- state: "frost"
condition: *cond_presence
- platform: schedule_state
name: "Chauffage Tour Bas"
default_state: "frost"
events:
- start: "00:00"
end: "01:00"
state: "boost"
- start: "01:00"
end: "08:30"
state: "eco"
- start: "08:30"
end: "19:30"
state: "comfort"
- start: "19:30"
end: "23:59"
state: "comfort"
- state: "boost"
condition: *cond_all_open
- state: "frost"
condition: *cond_presence
- platform: schedule_state
name: "Chauffage Tour Haut"
default_state: "frost"
events:
- start: "00:00"
end: "01:00"
state: "boost"
- start: "01:00"
end: "08:30"
state: "eco"
- start: "08:30"
end: "19:30"
state: "comfort"
- start: "19:30"
end: "23:59"
state: "comfort"
- state: "boost"
condition: *cond_all_open
- state: "frost"
condition: *cond_presence
voici ma carte schedule_card, enfin la partie concernant la vanne Ch_bm mais les autres ont exactement le même comportement
Condition 1 et 2 remplie : on est bien en boost en sigma
Condition 1, 2 et 3 remplies : on reste en boost sur le sigma
Mais la vanne est bien passée en frost :
Même souci avec la condition 4, on dirait que la carte ne prends pas en compte la dernière condition validée, mais le bon state est malgré tout pris en compte par le Vtherm.
Ai-je une erreur quelque part ?













