Hi,
I installed the second generation doorbell RING in home assistant. With an automation, I would like to display the live stream on Google Home Hub when the doorbell is activated
my automation:
alias: ring flux en direct sur Google Home Hub
description: Afficher le flux en direct sur Google Home Hub lorsque la sonnette est activée
triggers:
- trigger: state
entity_id:
- event.porte_d_entree_ding
conditions:
- condition: template
value_template: >-
{{ (as_timestamp(now()) -
as_timestamp(states.event.porte_d_entree_ding.state)) < 5 }}
enabled: false
actions:
- action: camera.play_stream
data:
format: hls
media_player: media_player.salle_a_manger
target:
entity_id: camera.porte_d_entree
mode: single
i got error message:
camera.porte_d_entree does not support play stream service
what is the solution !
THANKS