Netatmo thermostat ambiance action sur input booleen

Bonjour,

Je possede un thermostat Netatmo et j’aimerais que quand on mets en chauffe ou en off depuis le thermostat la chaudiere ca fasse basculer mon input.booleen.chaudiere qui lui a deja une action de off et on

Voici mon thermostat

hvac_modes:
  - auto
  - heat
  - 'off'
min_temp: 7
max_temp: 35
target_temp_step: 0.5
preset_modes:
  - away
  - boost
  - Frost Guard
  - Schedule
current_temperature: 20.8
temperature: 19
hvac_action: idle
preset_mode: Schedule
battery_level: 100
selected_schedule: 5fcf919e22805174495eefa1
friendly_name: Netatmo Thermostat Generale
supported_features: 17

voici mon automatisation du input qui a deja une action on et off sur la chaudiere

alias: Chaudiere off/on
description: ''
trigger:
  - platform: state
    entity_id: input_boolean.chaudiere
    from: 'off'
    to: 'on'
condition:
  - condition: state
    entity_id: climate.netatmo_thermostat_generale
    state: idle
    attribute: hvac_action
action:
  - service: climate.set_hvac_mode
    data:
      hvac_mode: auto
    target:
      entity_id:
        - climate.netatmo_thermostat_generale
mode: single

alias: Chaudiere On/Off
description: ''
trigger:
  - platform: state
    entity_id: input_boolean.chaudiere
    from: 'on'
    to: 'off'
condition:
  - condition: state
    entity_id: climate.netatmo_thermostat_generale
    state: idle
    attribute: hvac_action
action:
  - device_id: 81e9c7da9c1d72fe16649a7cbbf1ef07
    domain: climate
    entity_id: climate.netatmo_smart_thermostat
    type: set_hvac_mode
    hvac_mode: 'off'
mode: single

et voici mon automatisation que j’essaie de mettre en place quand madame coupe la chaudiere depuis le thermostat.

alias: en cours input chaudiere etat climate off
description: ''
trigger:
  - platform: state
    entity_id: climate.netatmo_thermostat_generale
    attribute: hvac_modes
    to: 'off'
    from: auto
condition:
  - condition: state
    entity_id: input_boolean.chaudiere
    state: 'on'
action:
  - service: input_boolean.turn_off
    target:
      entity_id: input_boolean.chaudiere
mode: single

Merci pour vos conseils de pros

System Health

version core-2021.3.2
installation_type Home Assistant Supervised
dev false
hassio true
docker true
virtualenv false
python_version 3.8.7
os_name Linux
os_version 4.19.0-16-amd64
arch x86_64
timezone Europe/Paris
Home Assistant Community Store
GitHub API ok
Github API Calls Remaining 4634
Installed Version 1.11.3
Stage running
Available Repositories 779
Installed Repositories 52
Home Assistant Cloud
logged_in false
can_reach_cert_server ok
can_reach_cloud_auth ok
can_reach_cloud ok
Hass.io
host_os Debian GNU/Linux 10 (buster)
update_channel stable
supervisor_version supervisor-2021.03.9
docker_version 20.10.5
disk_total 113.6 GB
disk_used 9.7 GB
healthy true
supported true
supervisor_api ok
version_api ok
installed_addons Samba share (9.3.1), Duck DNS (1.12.5), MQTT Server & Web client (1.2.0), File editor (5.2.0), Terminal & SSH (9.1.0), ESPHome (1.16.2), Spotify Connect (0.8.2), InfluxDB (4.0.4), Grafana (6.2.0), Portainer (1.4.0), Node-RED (8.2.1), Tydom2MQTT - Beta (release_1.01), Zigbee2mqtt (1.18.2-1), Zigbee2mqtt Edge (edge), Home Assistant Google Drive Backup (0.103.1)
Lovelace
dashboards 1
resources 33
views 12
mode storage
Spotify
api_endpoint_reachable ok

Pour l’automatisation de ton entrée booléenne tu n’utilise pas la même condition, est-ce normal ?

As tu essayer au lieu d’ajouter une automatisation, ajouter un déclencheur dans l’automatisation déjà existante pour le passage à Faux du booléen ?

Oui au dessus le declencheur de mon entity climate on ou off ont la condition idle.
donc quand je pilote mon entree input booleen on ou off ca pilote bien mon climate.

par contre quand on mais on ou off depuis le thermostat au mir le climate change d’etat sur Ha mais mon entree input booleen ne change pas d’etat.

J’espere que tu arrives a me comprendre