Notification automatisations a chaque reboot de Ha

Du coup la on devrais être bon

description: ""
mode: single
trigger:
  - platform: state
    entity_id:
      - binary_sensor.cellier_detecteur_fuite_d_eau_water_leak
      - binary_sensor.cuisine_detecteur_fuite_d_eau_water_leak
    from: "on"
    to: "off"
    id: Humide
  - platform: state
    entity_id:
      - binary_sensor.cellier_detecteur_fuite_d_eau_water_leak
      - binary_sensor.cuisine_detecteur_fuite_d_eau_water_leak
    from: "off"
    to: "on"
    id: Sec
condition: []
action:
  - choose:
      - conditions:
          - condition: trigger
            id:
              - Humide
        sequence:
          - service: notify.mobile_app_adrien_pixel_7
            metadata: {}
            data:
              message: Fuite d'eau dans la maison 🌊
              title: Détection de fuite
          - service: notify.mobile_app_sonia_pixel_7
            metadata: {}
            data:
              message: Fuite d'eau dans la maison 🌊
              title: Détection de fuite
      - conditions:
          - condition: trigger
            id:
              - Sec
        sequence:
          - service: notify.mobile_app_adrien_pixel_7
            metadata: {}
            data:
              title: Détection de fuite
              message: Fuite d'eau couper, il faut venir éponger 🧽 !!!
          - service: notify.mobile_app_sonia_pixel_7
            metadata: {}
            data:
              message: Fuite d'eau couper, il faut venir éponger 🧽 !!!
              title: Détection de fuite
1 « J'aime »