Wyze Sensor Voice Notifications via Google Home mini and Google Assistant

Hey all. I am really trying to learn and read as much as I can before I reach out for help. At this point Im at a loss though. I have wyze cameras and sensors around the house and I have them working great in Home Assistant. The motion and open/close toggles in Home Assistant are working perfectly. I’m trying to figure out how to pair those sensor statues now with Google Assistant to voice notify me when either motion is detected or a door is opened or closed. I do have the NabuCasa integration installed and working. Can someone please point me to a doc or video that they personally used to set this sort of automation feature up? Would really appreciate it. Thanks in advance. I’m still new to this so if I am missing any information, please let me know and I will provide it.

This is the automation I have that triggers when motion is detected on an Arlo camera pointed at my front door and broadcasts a message to my google devices.

  - alias: 'Doorbell'
    trigger:
      - platform: state
        entity_id: binary_sensor.aarlo_motion_front
        to: 'on'
    condition:
      - condition: state
        entity_id:  group.residents
        state: 'home'
    action:
      service: tts.google_translate_say
      entity_id: 
        - media_player.living_room_speaker
        - media_player.kitchen_home
        - media_player.bedroom_speaker
      data:
        message: 'There is someone at the front door'

Hope it helps.
Greg

2 Likes

Greg! Works like a charm. Much appreciated!

1 Like