New to Home Assistant: Need a Browser Mod Popup with an Input to Disarm Alarmo

I am relatively new to Home Assistant, in the process of migrating over from Smartthings. Of course, HASS requires more technical skills, and I am afraid some stuff is beyond my current knowledge. I have looked around for this and it has not worked well for us. We are trying to use the following code to create a popup alarm panel in Home Assistant, but we are getting an invalid configuration error. We are using Browser Mod and Alarmo, using HAOS in a VM, with the latest versions.

Our YAML is the following:

service: browser_mod.popup
data:
  dismissable: false
  autoclose: false
  title: Alarm
  size: normal
  browser_id:
    - "Wall Tablet"
  content:
    type: alarm-panel
    states:
      - disarm
    entities:
      - alarm_control_panel.alarmo

We have tried the following:

• We made sure that Browser Mod and Alarmo are installed and enabled.
• We tried restarting Home Assistant.

It’s set as dismissible in the code, but not in the screenshot because I temporarily disabled it (it was a pain while testing)!

We’re not sure what else to try, so any help would be appreciated.

You’re simply not configuring the card right, as the error states.

If you want to use the alarm_panel card, you need to use the correct entries.

There you can see, that it’s not “entities:” and a list, it is rather an “entity:” and one entry.

    type: alarm-panel
    states:
      - disarm
    entity: alarm_control_panel.alarmo

And if I may add a suggestion: have you tried the Alarmo alarm panel card? It is a little more consistent for the Alarmo integration, than the default one from HA. Give it a try! :slight_smile: