Driver Fatigue

getState([, propertyNames])

Declaration

hmkit.commands.DriverFatigue.getState()

Parameters

propertyNames

(optional) Array of names of the properties you want returned.

Returns

DriverFatigueResponse

Example

hmkit.telematics.sendCommand(
  hmkit.commands.DriverFatigue.getState(),
  accessCertificate
);

DriverFatigueResponse

Parameters

detectedFatigueLevel(Object)
data.value

(String) (enum)

timestamp

(Date)

Example

{
  "detectedFatigueLevel": {
    "timestamp": "2021-06-01T15:48:04.887Z",
    "data": {
      "value": "pause_recommended"
    }
  }
}

getAvailability([, propertyNames])

Declaration

hmkit.commands.DriverFatigue.getAvailability()

Parameters

propertyNames

(optional) Array of names of the properties you want returned.

Example

// Get availability for all properties
hmkit.telematics.sendCommand(
  hmkit.commands.DriverFatigue.getAvailability(),
  accessCertificate
);
// Get availability for specific properties
hmkit.telematics.sendCommand(
  hmkit.commands.DriverFatigue.getAvailability(['detectedFatigueLevel']),
  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

{
  "detectedFatigueLevel": {
    "availability": {
      "updateRate": {
        "value": "trip_high"
      },
      "rateLimit": {
        "value": 64,
        "unit": "hertz"
      },
      "appliesPer": {
        "value": "vehicle"
      }
    }
  }
}