I've got a question for people using Zwave equipment.
I'm on Wink version 56, and I'm having some strange behavior with my Wink or my Zwave device. Not sure which one.
Here is what I'm getting. I have a single Zwave device on my wink. It's an Intermatic dimmer. I've got a plain-ol incandescent bulb connected to it - for testing.
My Dimmer Switch/Lamp is turned on. Attribute 7 is True. (Good!)
Code: Select all
[root@flex-dvt ~]# aprontest -l -m1
Gang ID: 0x00000003
Generic/Specific device types: 0x11/0x01
Manufacturer ID: 0x0005 Product Type: 0x4841 Product Number: 0x0014
Device has 3 attributes...
test
ATTRIBUTE | DESCRIPTION | TYPE | MODE | GET | SET
1 | GenericValue | UINT8 | R/W | 99 | 99
3 | Level | UINT8 | R/W | 255 | 255
7 | On_Off | BOOL | R | TRUE | TRUE
Now, I walk over and turn my Dimmer Switch/Lamp off. Attribute 7 is False. (Good!)
Code: Select all
[root@flex-dvt ~]# aprontest -l -m1
Gang ID: 0x00000003
Generic/Specific device types: 0x11/0x01
Manufacturer ID: 0x0005 Product Type: 0x4841 Product Number: 0x0014
Device has 3 attributes...
test
ATTRIBUTE | DESCRIPTION | TYPE | MODE | GET | SET
1 | GenericValue | UINT8 | R/W | 0 | 0
3 | Level | UINT8 | R/W | 255 | 255
7 | On_Off | BOOL | R | FALSE | FALSE
Now, I walk over and turn my Dimmer Switch/Lamp on. Attribute 7 is False. (Wait - What!?)
Code: Select all
[root@flex-dvt ~]# aprontest -l -m1
Gang ID: 0x00000003
Generic/Specific device types: 0x11/0x01
Manufacturer ID: 0x0005 Product Type: 0x4841 Product Number: 0x0014
Device has 3 attributes...
test
ATTRIBUTE | DESCRIPTION | TYPE | MODE | GET | SET
1 | GenericValue | UINT8 | R/W | 0 | 0
3 | Level | UINT8 | R/W | 255 | 255
7 | On_Off | BOOL | R | FALSE | FALSE
...but if I poll the device....
Code: Select all
[root@flex-dvt ~]# aprontest -e -m1
Refresh device with master ID 1
Waiting for 1 callbacks...
Refresh callback: Status 0 on refreshing master ID: 1
[root@flex-dvt ~]# aprontest -l -m1
Gang ID: 0x00000003
Generic/Specific device types: 0x11/0x01
Manufacturer ID: 0x0005 Product Type: 0x4841 Product Number: 0x0014
Device has 3 attributes...
test
ATTRIBUTE | DESCRIPTION | TYPE | MODE | GET | SET
1 | GenericValue | UINT8 | R/W | 99 | 99
3 | Level | UINT8 | R/W | 255 | 255
7 | On_Off | BOOL | R | TRUE | TRUE
[root@flex-dvt ~]#
Is device callbacks still wonky, or is it my old Intermatic dimmer switch? (me thinks its the Wink.....)
Is anyone else using zwave? If so - do you get proper device reporting?