Hey!
I have a dual board konnected system, I am using it with Homebridge. However, sometimes 1 or 2 zones are not registering motion, thus the automations not working.
Furthermore, when I restart Homebridge, often none of the zones work for the first time. I have to restart Homebrige again to make the konnected boards register state changes. The boards have stable connection, I have looked into that already.
I have the following config:
{
"name": "Konnected",
"advanced": {
"discoveryTimeout": 20,
"entryDelaySettings": {
"delay": 120
},
"exitDelaySettings": {
"delay": 180,
"audibleBeeperModes": [
"1"
]
}
},
"panels": [
{
"name": "Konnected V1-V2",
"uuid": "8f655392-a778-4fee-97b9-482591817b816",
"ipAddress": "192.168.1.20",
"port": 9554,
"blink": true,
"zones": [
{
"enabled": true,
"zoneNumber": "1",
"zoneType": "motion",
"zoneLocation": "Garage",
"binarySensorSettings": {
"triggerableModes": [
"2",
"1"
]
}
},
{
"enabled": true,
"zoneNumber": "3",
"zoneType": "contact",
"zoneLocation": "Border",
"binarySensorSettings": {
"triggerableModes": [
"2",
"1"
]
}
},
{
"enabled": true,
"zoneNumber": "4",
"zoneType": "motion",
"zoneLocation": "1st floor",
"binarySensorSettings": {
"invert": false,
"triggerableModes": [
"1"
]
}
},
{
"enabled": true,
"zoneNumber": "5",
"zoneType": "motion",
"zoneLocation": "2nd floor",
"binarySensorSettings": {
"invert": false,
"triggerableModes": [
"1"
]
}
},
{
"enabled": true,
"zoneNumber": "out",
"zoneType": "siren",
"zoneLocation": "Alarm"
}
]
},
{
"name": "Konnected V1-V2",
"uuid": "8f655392-a778-4fee-97b9-4825918c7d844",
"ipAddress": "192.168.1.18",
"port": 21097,
"blink": true,
"zones": [
{
"enabled": true,
"zoneNumber": "1",
"zoneType": "beeper",
"zoneLocation": "Garage Beeper"
},
{
"enabled": true,
"zoneNumber": "3",
"zoneType": "beeper",
"zoneLocation": "Entryway Beeper"
},
{
"enabled": true,
"zoneNumber": "4",
"zoneType": "motion",
"zoneLocation": "Entryway",
"binarySensorSettings": {
"triggerableModes": [
"2",
"1"
]
}
},
{
"enabled": true,
"zoneNumber": "5",
"zoneType": "contact",
"zoneLocation": "Terace",
"binarySensorSettings": {
"triggerableModes": [
"2",
"1"
]
}
},
{
"enabled": false,
"zoneNumber": "6",
"zoneType": "contact",
"zoneLocation": "Garage",
"binarySensorSettings": {
"triggerableModes": [
"2",
"1"
]
}
}
]
}
],
"platform": "konnected"
}
Any help is appreciated!