Does the latest zwave beta in OpenRemote support Z-Wave Color Command Class?
Tinkering with a HSM200 HomeSeer HSM200 Z-Wave Multi-Sensor and trying to write colors to the led.
Curious.
Does the latest zwave beta in OpenRemote support Z-Wave Color Command Class?
Tinkering with a HSM200 HomeSeer HSM200 Z-Wave Multi-Sensor and trying to write colors to the led.
Curious.
Yes COMMAND_CLASS_COLOR_CONTROL is supported.
You should see something like the following in the nodeX.xm file :
COLOR_CHANNEL_WARM_WHITE COLOR_CHANNEL_COLD_WHITE COLOR_CHANNEL_RED COLOR_CHANNEL_GREEN COLOR_CHANNEL_BLUE``
In this example you can create sliders with the following commands:
SET_COLOR_CHANNEL_RED
SET_COLOR_CHANNEL_GREEN
SET_COLOR_CHANNEL_BLUE
SET_COLOR_CHANNEL_WARM_WHITE
SET_COLOR_CHANNEL_COLD_WHITE
STATUS_COLOR_CHANNEL_RED
STATUS_COLOR_CHANNEL_GREEN
STATUS_COLOR_CHANNEL_BLUE
STATUS_COLOR_CHANNEL_WARM_WHITE
STATUS_COLOR_CHANNEL_COLD_WHITE
It’s also possible to associate the color picker in the OpenRemote Online Designer with the following command :
SET_COLOR
If you want to set a fixed color use the following command format :
SET_COLOR RRGGBB
Examples :
red : SET_COLOR FF0000
green : SET_COLOR 00FF00
blue : SET_COLOR 0000FF
Thanks again for the help... I'll give it a try.