OpenZWave / open-zwave-control-panel

UNMAINTAINED - We are looking for someone to maintain ozwcp! The OpenZWave Control Panel (ozwcp for short) is an application built on the OpenZWave library that permits users to query, manage and monitor Z-Wave nodes and networks. It provides a web based user interface using AJAX principles.
Other
130 stars 72 forks source link

Fixed 255 limit for values #46

Closed gdombiak closed 8 years ago

gdombiak commented 8 years ago

I have a Yales lock that has 273 Values. I noticed that when I clicked on the lock, the control panel shows duplicated values and is missing many others. After troubleshooting this, I located the root cause.

MyNode::getValue (uint8 n)

That parameter supports range 0-255 so when I was requesting anything above 255, it seems like it was looping and starting form zero again. :( After my fix, the UI now shows correctly all values of my lock.

Fishwaldo commented 8 years ago

Thanks. I saw this issue recently and was going to look at it soon. 👍