Utiliser les boutons du Aqara W100 dans une automatisation

J’ai déplacé dans un nouveau sujet, car ça pollue le sujet initial, qui est un problème d’installation du Aqara w100 en matter.

@Stef_42

Tu n’as pas une entité à choisir, mais utiliser le déclencheur appareil.
Regarde ce tuto :

j’utilise un script :

alias: Thermostat salon up temp
sequence:
  - data:
      temperature: >-
        {{ state_attr('climate.versatile_thermostat_salon', 'temperature') +
        value | float(0) }}
    target:
      entity_id: climate.versatile_thermostat_salon
    action: climate.set_temperature
icon: mdi:plus
mode: single

puis

            - action: script.thermostat_salon_up_temp
              data:
                climate_id: climate.versatile_thermostat_salon
                value: 0.1

Mais dans une automatisation, ça devrait fonctionner :

  - data:
      temperature: >-
        {{ state_attr('climate.versatile_thermostat_salon', 'temperature') +
        0.5 | float(0) }}
    target:
      entity_id: climate.versatile_thermostat_salon
    action: climate.set_temperature