Strip Light

May 16, 2026 ยท View on GitHub


Device List Information

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

Control Commands

deviceTypecommandTypeCommandcommand parameterDescription
Strip LightcommandturnOndefaultset to ON state
Strip LightcommandturnOffdefaultset to OFF state
Strip Lightcommandtoggledefaulttoggle state
Strip LightcommandsetBrightness{1-100}set brightness
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
deviceTypeStringthe type of the device
deviceMacStringthe MAC address of the device
powerStateStringthe current power state of the device, "ON" or "OFF"
brightnessIntegerthe brightness value, range from 1 to 100
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": "WoStrip",
        "deviceMac": DEVICE_MAC_ADDR,
        "powerState": "ON",
        "brightness": 10,
        "color": "255:245:235",
        "timeOfSample": 123456789
    }
}