Floor Lamp

May 16, 2026 ยท View on GitHub


Device List Information

KeyValue TypeDescription
deviceIdStringdevice ID
deviceNameStringdevice name
deviceTypeStringdevice type. Floor Lamp
enableCloudServiceBooleandetermines if Cloud Service is enabled or not for the current device
hubDeviceIdStringdevice's parent Hub ID

Device Status

KeyValue TypeDescription
deviceIdStringdevice ID
deviceTypeStringdevice type. Floor Lamp
onlineBooleanthe connection status of the device. true or false
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
Floor LampcommandturnOndefaultset to ON state
Floor LampcommandturnOffdefaultset to OFF state
Floor Lampcommandtoggledefaulttoggle state
Floor LampcommandsetBrightness{0-100}set brightness
Floor LampcommandsetColor"{0-255}:{0-255}:{0-255}"set RGB color value
Floor LampcommandsetColorTemperature{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": "Floor Lamp",
        "deviceMac": DEVICE_MAC_ADDR,
        "powerState": "ON",
        "brightness": 10,
        "color": "255:255:0",
        "colorTemperature": 3500,
        "timeOfSample": 123456789
    }
}