Skip to content

Cookbook

Thomas Lovén edited this page Sep 21, 2019 · 10 revisions

Here are some example uses. More to come!

An automation which displays a camera feed when a human is detected:

By @scstraus

- id: popup_camera_when_human_detected
  alias: Popup Camera When Human Detected
  hide_entity: true
  initial_state: 'true'
  trigger:
    platform: state
    entity_id: binary_sensor.human
    to: 'on'
  action:
    - service: browser_mod.command
      data:
        command: more-info
        entity_id: camera.main
        deviceID:
          - 12345678-12345678
Clone this wiki locally