I have setup when I ask Google Home/Alexa “Who is at the front door”.
It turns on my living room TV and then shows me my front door camera live stream on it!.
This is similar to Google Nest Cam.
I am using Harmony hub, Chromecast device and a camera.
Here is the scripts.yaml:
monitor_porch_livingroom: # Name of the script whatever you want, you can customize so Google/Alexa knows
sequence:
- service: remote.turn_on # call harmony service
entity_id: remote.livingroom # Your harmony hub
data:
activity: 12345678 # Your harmony hub activity id from harmony*.conf file, from HA root folder
- service: media_player.play_media # call media player service
entity_id: media_player.living_room # Your google cast TV/ chromecast
data:
media_content_id: http://192.168.1.23:81/mjpg/cam2/video.mjpg?user=abcdef&pw=pqrs # your camera feed, this is blueiris
media_content_type: image/jpg
And here is the customize.yaml:
script.monitor_porch_livingroom:
friendly_name: Who is at the front door
emulated_hue_hidden: false
Enjoy!