Once again Xssesiv, many thanks for your time. Unfortunately, my setup was almost exactly the same as yours, but I still couldn’t get my system to see the other ‘areas’ of my Paradox installation.
My entire system was slowing down on a Raspberry Pi installation so I reinstalled a snapshot of my setup in a Docker container on an Ubuntu laptop and now it can see the other Paradox areas! Maybe just a problem with limited resources.
I can now unset the system using alarm_control_panel and see all motion sensors, door sensors etc. The only problem is that I can’t set the alarm.
I have the following setup for my areas:
- platform: mqtt
state_topic: 'paradox/alarm/state/1'
command_topic: 'paradox/alarm/cmnd/1'
name: alarm_house
payload_disarm: 'DISARM'
payload_arm_home: 'ARM_HOME'
payload_arm_away: 'ARM_AWAY'
qos: 1
- platform: mqtt
state_topic: 'paradox/alarm/state/2'
command_topic: 'paradox/alarm/cmnd/2'
name: alarm_cottage
payload_disarm: 'DISARM'
payload_arm_home: 'ARM_HOME'
payload_arm_away: 'ARM_AWAY'
qos: 1
My Lovelace alarm panels are set up as follows:
- entity: alarm_control_panel.alarm_house
name: House
states:
- arm_home
- arm_away
type: alarm-panel
- entity: alarm_control_panel.alarm_garage
name: Garage
states:
- arm_home
- arm_away
type: alarm-panel
and lastly, my Paradox setup is as follows:
{
"IP150_ADDRESS": "http://192.168.xxx.xxx:xxxx",
"PANEL_CODE": "XXXX",
"PANEL_PASSWORD": "xxxxxxxx",
"MQTT_ADDRESS": "mqtt://core-mosquitto",
"MQTT_USERNAME": "XXXXX",
"MQTT_PASSWORD": "xxxxxxxxxxx",
"ALARM_PUBLISH_TOPIC": "paradox/alarm/state",
"ALARM_SUBSCRIBE_TOPIC": "paradox/alarm/cmnd",
"ZONE_PUBLISH_TOPIC": "paradox/zone/state",
"CTRL_PUBLISH_TOPIC": "paradox/ctrl/state",
"CTRL_SUBSCRIBE_TOPIC": "paradox/ctrl/cmnd"
}
Can anyone see any reason why I can only disarm my alarm and not arm them?
Thanks in advance for your help.