RGBICWW Strip Light

May 16, 2026 ยท View on GitHub


Device List Information

KeyValue TypeDescription
deviceIdStringdevice ID
deviceNameStringdevice name
deviceTypeStringdevice type. RGBICWW Strip Light
enableCloudServiceBooleandetermines if Cloud Service is enabled or not for the current device
hubDeviceIdStringdevice's parent Hub ID. 000000000000 when the device itself is a Hub or it is connected through Wi-Fi.

Device Status

KeyValue TypeDescription
deviceIdStringdevice ID
deviceTypeStringdevice type. RGBICWW Strip Light
hubDeviceIdStringdevice's parent Hub ID. 000000000000 when the device itself is a Hub or it is connected through Wi-Fi.
versionStringthe current BLE and Wi-Fi firmware version, e.g. V3.1-6.3
powerStringON/OFF state
onlineStatusStringthe connection status of the device. online or offline
brightnessIntegerthe brightness value, range from 1 to 100
colorStringthe color value, RGB "255:255:255"
colorTemperatureIntegerthe color temperature value, range from 2700 to 6500
onlineStatusStringthe connection status of the device. online or offline

Control Commands

deviceTypecommandTypeCommandcommand parameterDescription
RGBICWW Strip LightcommandturnOndefaultset to ON state
RGBICWW Strip LightcommandturnOffdefaultset to OFF state
RGBICWW Strip Lightcommandtoggledefaulttoggle state
RGBICWW Strip LightcommandsetBrightness{0-100}set brightness
RGBICWW Strip LightcommandsetColorTemperature{2700-6500}set color temperature
RGBICWW Strip LightcommandsetColor"{0-255}:{0-255}:{0-255}"set RGB color value

Webhook Events

Key NameValue TypeDescription
eventTypeStringthe type of events
eventVersionStringthe current event version
contextObjectthe detail info of the event
deviceTypeStringattributes of the context object. the type of the device
deviceMacStringattributes of the context object. the MAC address of the device
powerStateStringattributes of the context object. ON/OFF state
brightnessIntegerattributes of the context object. the brightness value, range from 1 to 100
colorStringthe color value, in the format of RGB value, "255:255:255"
colorTemperatureIntegerattributes of the context object. the color temperature value, range from 2700 to 6500
timeOfSampleLongattributes of the context object. the time stamp when the event is sent
{
   "eventType": "changeReport",
    "eventVersion": "1",
    "context": {
        "deviceType": "RGBICWW Strip Light",
        "deviceMac": DEVICE_MAC_ADDR,
        "powerState": "ON",//"ON"or"OFF"
        "brightness": 10,
        "color": "255:255:0",
        "colorTemperature": 3500,
        "timeOfSample": 123456789
    }
}