#Bubble Card Camera Stream Pop Up

1 messages · Page 1 of 1 (latest)

limber vapor
#

Anyone familiar with bubble card help me determine why this isn't working?

Person is being detected but the camera stream is not popping up.

  • type: custom:bubble-card
    card_type: pop-up
    show_header: true
    close_by_clicking_outside: true
    open_action:
    action: call-service
    target:
    entity_id: camera.reolink_video_doorbell_poe_w_fluent
    trigger_state: "on"
    trigger_entity: binary_sensor.reolink_video_doorbell_poe_w_person
    hash: "#doorbell"
trim lark
#

i think you need your trigger entity to be the visitor button, right?

#

My doorbell is en route right now. I have this bookmarked and can maybe help once i get mine where i can fiddle with it.

#

I am personally having some issues with the advanced templating in Bubble Cards. I have an issue i submitted on github right now. There's a lag/race condition when you need to change things the JS way with the querySelector. When that loads, the component isn't on my screen yet or something. If you do any advanced templating with text then please do point me in the right direction. I am a dev myself and I think i am doing it right. It looks right to me.

serene tundra
# limber vapor Anyone familiar with bubble card help me determine why this isn't working? Pers...

I've been meaning to try this for a while. Here is my first try. (same camera)

cards:
  - type: custom:bubble-card
    card_type: pop-up
    show_header: true
    close_by_clicking_outside: true
    open_action:
      action: call-service
      target:
        entity_id: camera.doorbell_fluent
    trigger_state: "on"
    trigger_entity: binary_sensor.doorbell_visitor
    hash: "#doorbell"
    grid_options:
      columns: full
  - camera_view: live
    type: picture-glance
    entities:
      - entity: binary_sensor.front_security_door
      - entity: binary_sensor.front_door
      - entity: light.front_porch
      - entity: light.entry_light
      - entity: select.doorbell_play_quick_reply_message
    camera_image: camera.doorbell_fluent
    grid_options:
      columns: full
    aspect_ratio: "1.35"
grid_options:
  columns: full
trim lark
#

Yeah so i got it if you are clicking on a notification (like if the doorbell is pressed). All you do is make the click action in the uri be like /lovelace/dashboard#front-door-popup (or whatever your dashboard url is with the popup ID) and when you tap the notification or action button, it'll open HA and then open that dashboard and open that popup all at once. It's pretty smooth.

#

Not sure if that is what the OP is asking, or if they are wanting it on like a wall tablet or something. But that's how i have done it and gotten around it. You can't trigger an event before the app is open, so you have to manually set the navigation to open the popup when you land in the app.