Temperature and Relative Humidity Calibration
[TCP/WebSocket<-->IM]
This request calibrates the temperature and relative humidity of the InvisDeco.
Request
packetID
: Represents the ID of the packet. This can be any six digit number, no leading zeros.payload
:callbackName
: 28callbackArgs
:0
: The actual temperature in the area in Celsius in millis. For example: 25ºC would be 25000.1
: The actual relative humidity in the area in percentage in millis. For example: 50% would be 50000.
{
"packetID": 221057,
"payload":
{
"callbackName": 28,
"callbackArgs": [25000, 50000]
}
}
Response
sn
: The serial number of the InvisOutlet.packetID
: Represents the ID of the packet based on requestpacketID
.PUBACK
: 1 - The request is received and calibration has been processed successfully. 0 - Timeout to request occupancy sensor to perform calibration. Please try to restart InvisDeco and try again.
{
"sn": "0003C44076",
"packetID": 221057,
"PUBACK": 1
}
Last updated