Home Climate Panel

May 16, 2026 ยท View on GitHub


Device List Information

KeyValue TypeDescription
deviceIdStringdevice ID
deviceNameStringdevice name
deviceTypeStringdevice type. Home Climate Panel
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. Home Climate Panel
batteryIntegerthe current battery level 0-100
versionStringthe current BLE and Wi-Fi firmware version, e.g. V3.1-6.3
temperatureFloattemperature in celsius
humidityIntegerhumidity percentage
moveDetectedBooleandetermines if motion is detected
brightnessIntegerthe brightness value, range from 1 to 100

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
temperatureFloatthe current temperature reading
humidityIntegerthe current humidity reading in percentage
scaleStringthe current temperature unit being used
batteryIntegerthe current battery level
detectionStateStringthe motion state of the device, "DETECTED" stands for motion is detected; "NOT_DETECTED" stands for motion has not been detected for some time
brightnessStringthe brightness level. "bright" or "dim"
timeOfSampleLongthe time stamp when the event is sent
{
    "eventType": "changeReport",
    "eventVersion": "1",
    "context": {
        "deviceType": "climate Panel",
        "deviceMac": DEVICE_MAC_ADDR,
        "temperature":13,
        "humidity":18,
        "scale": "CELSIUS",
        "battery":100,
        "detectionState": "DETECTED",
        "brightness":"bright" // bright,dim
        "timeOfSample": 123456789
    }
}