Control
Command | Format |
Description |
Example |
Control a device by value |
cv,ref,value | Controls a device by settings its value. All devices have a collection of name/value pairs that represent controllable parts of the device, such as On=99 and Off=0. The value is used for control. |
Turn on a light where the reference # is 2356 and the ON value is 99: cv,2356,99 |
Control a device by label |
cl,ref,label | Controls a device using the control label. All devices have a collection of name/value pairs that represent controllable parts of the device, such as On=99, and Off=0. The actual label is used for control. |
Turn on a light where the reference # is 2356 and the ON label is On: cl,2356,On |
Command | Format |
Description |
Example |
Get control information |
gc,[ref] | Returns control information for a given device, all all devices if the reference # is omitted. The return format is: ref,label=value,label=value,... If the device supports a control point that accepts a range of values, such as dimming light, the control pair will be returned as: PREFIX (value)SUFFIX=FROM->TO The PREFIX is a label that appears before the value and the SUFFIX is a label that appears after the value. The PREFIX and SUFFIX are listed on the "Status/Graphics" tab in the device properties and can be changed if needed. Note: If a label contains a "," it will be escaped and returned as "\,". |
For example, a dimming device with ref 3755 may have its PREFIX set to "Dim" and its
SUFFIX set to "%", and the valid values are 1-98, the return would be: 3755,On=99,Off=0,Dim (value)%=1->98 |