I know this is a bit older of a post, but I figured some things out with these lights and have to say they work well and thanks to all the info others have shared on these lights
I ordered mine from
Limitlessled.com (RGBW starter kit took 3.5 weeks to receive)
I created a command to dim the lights in 10% intervals for group one, being that there API says it jumps by 3.6% I rounded to the closest 10 for this command, because who wants to remember 21% 25% 29%.....
Mighlight
<?xml version="1.0" encoding="utf-16"?>
<!--VoxCommando 2.0.1.0-->
<commandGroup open="True" name="Mighlight " enabled="True" prefix="" priority="0" requiredProcess="" description="">
<command id="359" name="Dim Lights to {1} (10% jumps)" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>TCP.UDP.SendMixed</cmdType>
<params>
<param>\x45\x00\x55</param>
<param>8899</param>
<param>192.168.1.240</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>VC.Pause</cmdType>
<params>
<param>100</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TCP.UDP.SendMixed</cmdType>
<params>
<param>\x4E\{1}\x55</param>
<param>8899</param>
<param>192.168.1.240</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<phrase>Dim Lights to, set lights</phrase>
<payloadFromXML phraseOnly="False" use2partPhrase="False" phraseConnector="by" Phrase2wildcard="anyone" optional="False">payloads\MILIGHTDIM.xml</payloadFromXML>
<phrase optional="true">percent</phrase>
</command>
<command id="279" name="Disco" enabled="true" alwaysOn="False" confirm="False" requiredConfidence="0" loop="False" loopDelay="0" loopMax="0" description="">
<action>
<cmdType>TCP.UDP.SendMixed</cmdType>
<params>
<param>\x45\x00\x55</param>
<param>8899</param>
<param>192.168.1.240</param>
</params>
<cmdRepeat>2</cmdRepeat>
</action>
<action>
<cmdType>VC.Pause</cmdType>
<params>
<param>100</param>
</params>
<cmdRepeat>1</cmdRepeat>
</action>
<action>
<cmdType>TCP.UDP.SendMixed</cmdType>
<params>
<param>\x4D\x00\x55</param>
<param>8899</param>
<param>192.168.1.240</param>
</params>
<cmdRepeat>4</cmdRepeat>
</action>
<phrase>lets get the party started, Disco Mode</phrase>
</command>
</commandGroup>
Payload for dimming the lights are attached
I also found that when setting Disco Mode if you have the disco Action trigger more then once it will change the type of disco pattern and increase the speed, the Command in the group above triggers 4 times and makes the lights pulse faster then sending the action once
I Also had a ?
is there any way to get the state (On/Off) of the light with VC
I'm wanting a command that will toggle lights
Off if On / On if Off
Thanks