Strip Light 3

May 16, 2026 ยท View on GitHub


Device List Information

KeyValue TypeDescription
deviceIdStringdevice ID
deviceNameStringdevice name
deviceTypeStringdevice type. Strip Light 3
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. Strip Light 3
hubDeviceIdStringdevice's parent Hub ID
versionStringthe current BLE and Wi-Fi firmware version, e.g. V3.1-6.3
powerStringON/OFF state
brightnessIntegerthe brightness value, range from 1 to 100
colorStringthe color value, RGB "255:255:255"
colorTemperatureIntegerthe color temperature value, range from 2700 to 6500

Control Commands

deviceTypecommandTypeCommandcommand parameterDescription
Strip Light 3commandturnOndefaultset to ON state
Strip Light 3commandturnOffdefaultset to OFF state
Strip Light 3commandtoggledefaulttoggle state
Strip Light 3commandsetBrightness{0-100}set brightness
Strip Light 3commandsetColor"{0-255}:{0-255}:{0-255}"set RGB color value
Strip Light 3commandsetColorTemperature{2700-6500}set color temperature

Webhook Events

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