AlarmDotCom - Multiple Locations

Curious if the alarmdotcom integration (https://www.home-assistant.io/components/alarmdotcom/) has the ability to be configured with multiple locations.

I have it setup both at work and home (two systems). I’ve created a separate login where the primary location is different and trying to setup configuration.yaml like so:

alarm_control_panel:
   platform: alarmdotcom
   name: work
   username: !secret alarmdotcom_user_work
   password: !secret alarmdotcom_pass_work

alarm_control_panel:
   platform: alarmdotcom
   name: home
   username: !secret alarmdotcom_user
   password: !secret alarmdotcom_pass

Unfortunately, only the second location is registering. Has anyone successfully implemented a similar setup - or is my code off and therefore causing the issue?

Thanks in advance for any / all help!

And… I think I figured it out. Coding issue. Still getting the hang of this.

Anyhow, will put this here on how it’s working correctly in hopes in helps someone(s) else in the future who are trying to use mutliple locations of the Alarm.com integration.

alarm_control_panel:
   - platform: alarmdotcom
     name: work
     username: !secret alarmdotcom_user_work
     password: !secret alarmdotcom_pass_work
   - platform: alarmdotcom
     name: home
     username: !secret alarmdotcom_user
     password: !secret alarmdotcom_pass

[Moderator(s): Please feel free to remove this entire thread]

1 Like