Light Conditions
getLightConditions([, propertyNames])
Declaration
hmkit.commands.LightConditions.getLightConditions()
Parameters
propertyNames | (optional) Array of names of the properties you want returned. |
Returns
LightConditionsResponse
Example
hmkit.telematics.sendCommand(
hmkit.commands.LightConditions.getLightConditions(),
accessCertificate
);
LightConditionsResponse
Parameters
insideLight | (Object) |
data.value | (Number) (illuminance) Measured inside illuminance |
timestamp | (Date) |
outsideLight | (Object) |
data.value | (Number) (illuminance) Measured outside illuminance |
timestamp | (Date) |
Example
{
"insideLight": {
"timestamp": "2021-06-01T15:48:04.887Z",
"data": {
"value": 0.25,
"unit": "lux"
}
},
"outsideLight": {
"timestamp": "2021-06-01T15:48:04.887Z",
"data": {
"value": 111000,
"unit": "lux"
}
}
}
getAvailability([, propertyNames])
Declaration
hmkit.commands.LightConditions.getAvailability()
Parameters
propertyNames | (optional) Array of names of the properties you want returned. |
Example
// Get availability for all properties
hmkit.telematics.sendCommand(
hmkit.commands.LightConditions.getAvailability(),
accessCertificate
);
// Get availability for specific properties
hmkit.telematics.sendCommand(
hmkit.commands.LightConditions.getAvailability(['outsideLight']),
accessCertificate
);
Response
Parameters
availability | (Object) |
updateRate.value | (String) enum |
rateLimit.value | (Number) |
rateLimit.unit | (String) |
appliesPer.value | (String) |
Discussion
The response contains an availability object for each property, as shown in the example
Example
{
"outsideLight": {
"availability": {
"updateRate": {
"value": "trip_high"
},
"rateLimit": {
"value": 64,
"unit": "hertz"
},
"appliesPer": {
"value": "vehicle"
}
}
}
}