Skip to content

Instantly share code, notes, and snippets.

@nickmacavoy
Created January 17, 2021 09:11
Show Gist options
  • Save nickmacavoy/be42c84c48c485b1f122cfae582bcdba to your computer and use it in GitHub Desktop.
Save nickmacavoy/be42c84c48c485b1f122cfae582bcdba to your computer and use it in GitHub Desktop.
Homebridge config ~/home-assistant/homebridge/config/config.json
{
"bridge": {
[redacted]
},
"accessories": [
{
"accessory": "mqttthing",
"type": "securitySystem",
"name": "Home",
"url": "mqtt://192.168.1.x:1883", #IP address of MQTT
"username": "x", #MQTT Username
"password": "x", #MQTT Password
"topics": {
"setTargetState": "paradox/control/partitions/x", #x is topic name from viewing MQTT Explorer
"getTargetState": "paradox/states/partitions/x/target_state", #x is topic name from viewing MQTT Explorer
"getCurrentState": "paradox/states/partitions/x/current_state" #x is topic name from viewing MQTT Explorer
},
"currentStateValues": [
"armed_home",
"armed_away",
"armed_night",
"disarmed",
"triggered"
],
"targetStateValues": [
"armed_home",
"armed_away",
"armed_night",
"disarmed"
],
"restrictTargetState": [
1,
3
]
}
],
"platforms": [
{
"name": "Config",
"port": 8081,
"auth": "form",
"theme": "dark-mode",
"tempUnits": "c",
"lang": "auto",
"platform": "config"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment