Sensors

[InvisOutlet -> TCP/WebSocket]

Updating InvisDeco Aura's latest sensor readings.

Response

  • sn: The serial number of the InvisOutlet.

  • packetID: Represents the ID of the packet based on request packetID.

  • payload:

    • callbackName : 11

    • callbackArgs :

      • 0 : The InvisDeco device type.

      • 1 :

        • lux_valid: A flag indicating the ambient brightness sensor validity of the sensor; 1 - valid, 0 - invalid.

        • lux: Ambient brightness level in LUX.

{
    "sn": "11B29200071",
    "packetID": 371939,
    "payload": {
        "callbackName": 11,
        "callbackArgs": [
            1,
            {
                "lux_valid": 1,
                "lux": "3489.80"
            }
        ]
    }
}

Last updated