Wallpanel popup autoplay?

Hi,

I’m currently using Wallpanel, and it is a great app holding the functionality I’m looking for.
But I have a problem which involves the usage of browser_mod.popup, to show my camera stream, when motion detected. everything work fine automation wize, but the camera stream doesn’t autoplay when the popup appears. Does anyone have a working solution?

did you ever get a resolution to this by any chance?? i have a similar issue. i have installed browser mod and i can get my camera to popup on my local pc browser but not on my wall tablet.

Thanks.

Hi :blush:

Yes, i now how a working solution. So far it have been very stable, and a great feature for my on wall tablet.

Automation:

alias: Popup Camera Garage on motion
description: Garage Popup
trigger:
  - platform: device
    device_id: xxxxxx
    domain: nest
    type: camera_motion
  - platform: device
    device_id: xxxxxx
    domain: nest
    type: camera_person
condition:
  - condition: time
    after: "06:00"
    before: "00:00"
  - condition: state
    entity_id: input_boolean.allow_popup_notify
    state: "on"
action:
  - service: mqtt.publish
    data:
      topic: wallpanel/mywallpanel/command
      payload: "{\"wake\": true, \"wakeTime\": 30}"
  - service: mqtt.publish
    data:
      topic: wallpanel/mywallpanel/command
      payload: "{\"brightness\": 100}"
  - service: browser_mod.popup
    data:
      title: Motion Garage
      timeout: 30000
      content:
        type: picture-entity
        entity: camera.'your-entity'
        camera_view: live
      size: fullscreen
      autoclose: true
  - delay:
      hours: 0
      minutes: 0
      seconds: 30
      milliseconds: 0
    enabled: false
  - service: browser_mod.close_popup
    data:
      deviceID: ( optional )
        - Wallpanel ( optional ) // if not defined, popup will show on every device //
    enabled: false
initial_state: "true"
mode: queued
max: 2
1 Like

And now with the new browser-mod 2, just remember to go into the menu and turn on the register button, in wallpanel.

Hi what I need to change to make it work in my config? Did the wallpanel/mywallpanel/command I change to my dashboard path? thank :slight_smile:

by the way I have ajust my entity