Nesse vídeo, eu mostro como você pode criar uma notificação no seu telefone IOS ou Android que possua menus para executar ações distintas.

1. Vídeo sobre o relé contato seco: https://youtu.be/qxKcYt4afxU

2. Link para compra do relé contato seco: https://s.click.aliexpress.com/e/_AoQEGb

3. Script referente a notificação com opções: 

alias: Abrir Portão
sequence:
  - alias: Variáveis
    variables:
      acao_sim: "{{ 'SIM_' ~ context.id }}"
      acao_nao: "{{ 'NAO_' ~ context.id }}"
  - alias: Pergunta se deseja abrir
    service: notify.mobile_app_iphone_patrick
    data:
      message: Você deseja realmente abrir o portão?
      data:
        actions:
          - action: "{{ acao_sim }}"
            title: Sim
          - action: "{{ acao_nao }}"
            title: Não
  - alias: Aguarda resposta
    wait_for_trigger:
      - platform: event
        event_type: mobile_app_notification_action
        event_data:
          action: "{{ acao_sim }}"
      - platform: event
        event_type: mobile_app_notification_action
        event_data:
          action: "{{ acao_nao }}"
    timeout: "00:01:00"
  - alias: Executa a ação
    choose:
      - conditions: "{{ wait.trigger.event.data.action == acao_sim }}"
        sequence:
          - service: switch.turn_on
            data: {}
            target:
              entity_id:
                - switch.garagem_switch_portao_social
      - conditions: "{{ wait.trigger.event.data.action == acao_nao }}"
        sequence:
          - service: switch.turn_off
            data: {}
            target:
              entity_id:
                - switch.garagem_switch_portao_social
mode: single
icon: mdi:gate-open

Pronto! Seja feliz! 😂

DEIXE UMA RESPOSTA

Please enter your comment!
Please enter your name here