daymondm

Results 25 comments of daymondm

Glass break detectors can be added, but I'd advise against it: the event stream is some times unreliable so receiving an immediate notification when a sensor is activated is not...

yeah, I've noticed this as well. The API will refresh itself every so often (as defined in the config file) and catch any updates that the API doesn't send. You...

Hi @JTDeel , I believe you can add support for the wireless sensors. There are several devices in your list that I have not seen and do not have access...

Is Id 79 (garage) a dimmer switch or normal on/off switch? I presume binary device designates it as having only an on/off state? What about the multilevel switches (id 85/garage...

Are you able to control the switches through the Vivint app itself? I don't know why I had in my mind that this was simply adding a contact sensor. I'm...

Switches I guess it wouldn’t have been impossible to guess. Looks easy enough, I’ll update the fork when I get home

ok so lets try this... add the following code to the deviceset class, after the // mischief managed comment (line 678 of device_set.js): ``` // Binary switch has only on...

Also for the dimmer switches.. can you tell me if you always get a PubNub message stating s: true and s:false when the light is switched on and off? or...

excellent, I added a couple things I was hoping you would try.. so first off for the binary switches, I added some code to infer whether or not they are...

ok lets change the device class name back to LightSwitch instead of BinarySwitch: ` let Devices = [ContactSensor, MotionSensor, Lock, Thermostat, GarageDoor, Panel, PIVMotion, LightSwitch, DimmerSwitch]` and: ``` // Binary...