timcharper / homebridge-vivint

Integrates Vivint security system with Apple Home
Other
34 stars 34 forks source link

Can't see contacts and motions connected to the Take-345 #6

Closed johnyoungberg closed 5 years ago

johnyoungberg commented 5 years ago

The takeover module allows existing wired zones to be added wirelessly to the Vivint panel. These zones are not populating in homebridge.

johnyoungberg commented 5 years ago

For anyone else running into this issue, I was able to fix it by adding the missing device ID's to the correct class in device_set.js. For example on row 223: (data.t == "wireless_sensor") && ((data.ec == 1252) || (data.ec == 1251) || (data.ec == 655)) I changed it to: (data.t == "wireless_sensor") && ((data.ec == 1252) || (data.ec == 1251) || (data.ec == 655) || (data.ec == 873)))