-
Notifications
You must be signed in to change notification settings - Fork 96
Homebridge
Jevgeni Kiski edited this page Oct 2, 2019
·
17 revisions
We fully support homebridge via mqttthing
.
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/current_state",
"getCurrentState": "paradox/states/partitions/First_floor/current_state"
},
"currentStateValues": [
"armed_home",
"armed_away",
"armed_night",
"disarmed",
"triggered"
],
"targetStateValues": [
"arm_stay",
"arm",
"arm_stay",
"disarm"
],
"restrictTargetState": [ 1, 3 ]
Paradox does not support arm_night
, so we map it to arm_stay
Restart homebridge.
Enjoy.