-
Notifications
You must be signed in to change notification settings - Fork 96
Homebridge
Jevgeni Kiski edited this page Nov 14, 2019
·
17 revisions
We fully support homebridge via mqttthing
.
Currently requires dev branch
You need to have MQTT enabled.
In homebridge config.json add accessory:
{
"accessory": "mqttthing",
"type": "securitySystem",
"name": "First floor",
"url": "mqtt://<ip_address>",
"username": "<username>",
"password": "<password>",
"topics": {
"setTargetState": "paradox/control/partitions/First_floor",
"getTargetState": "paradox/states/partitions/First_floor/target_state",
"getCurrentState": "paradox/states/partitions/First_floor/current_state"
},
"currentStateValues": [
"armed_home",
"armed_away",
"armed_night",
"disarmed",
"triggered"
],
"targetStateValues": [
"armed_home",
"armed_away",
"armed_night",
"disarmed"
],
"restrictTargetState": [ 1, 3 ]
}
If you need arm_stay
or arm_sleep
, change your restrictTargetState
. It is an array of targetStateValues
indexes to exclude.
EVO panels do not support armed_night
.
Restart homebridge.
Enjoy.