Sensors
SEM stands for SEnsor Module. It collects data from sensors (listed below) from Communication Units and makes them available for internal usage to other SCALAR modules (internal API), and external usage to integrators (external API).
Sensor data is provided in a non-aggregated way. Sensor module’s intention is to be used by other modules as a source of truth about sensor data.
In some cases, sensor data is used for reporting (historical); in other cases, the latest value for a sensor might be requested; and in some other cases. Sensor module also provides raw sensor data to customers and/or integrators in form of Feed/bulk.

The following table includes a list of sensors that is used by events:
SensorId | Sensor Value � | Measuring | Notes | Snapshot Timeslot | |
---|---|---|---|---|---|
1 | tbsAmberLight | Boolean | N/A | 8h | |
2 | tbsRedLight | Boolean | N/A | 8h | |
3 | tbsPowered | Boolean | N/A | true if the ebs/abs is powered. False otherwise | 8h |
4 | brakeLiningOk | Boolean | N/A | true when brake lining is ok for all wheels; false when at least one wheel has brake lining below the threshold | 8h |
5 | fuel | Integer | percentage | The Fuel Level that the truck has at the time of the message. It is expressed in percentage. | 8h |
6 | tfu | Double | liter | The Total Fuel Used of the truck, expressed in Liters | 8h |
7 | supplyVoltage | Double | volt | Allowed values: 0-32. Measured in Volts | 8h |
8 | mileage | Double | kilometer | Odometer reading, expressed in km | 8h |
9 | fuelRemainingDistance | Double | kilometer | 8h | |
10 | gnssSpeed | Integer | kilometers/hour | Speed of the asset detected using gnss connection, expressed in km/h | 8h |
11 | wheelSpeed | Integer | kilometers/hour | Speed of the asset detected using wheel information (for example from ebs), expressed in km/h | 8h |
12 | axleLoad | Integer | kilogram | Aggregated load of all axles. Value is expressed in Kg with no decimal digits | 8h |
13 | tirePressure | DataType: LocationValueDouble { "location": , "value": } | kilopascal | Pressure is expressed in bar with at most one decimal digit | 8h |
14 | tireTemperature | DataType: LocationValueInteger { "location": , "value": } | celsius | Temperature is expressed in Celsius degrees | 8h |
15 | tirePressureStatus | DataType: LocationValueString { "location": , "value": } | N/A | 8h | |
16 | reeferLoggerTemperature | DataType: LocationValueDouble { "location": , "value": } | celsius | Temperature is expressed in Celsius degrees, with at most a decimal digit | 8h |
17 | reeferLoggerHumidity | DataType: LocationValueInteger { "location": , "value": } | percentage | percentage of the logger humidity. Allowed values are from 0 to 100. | 8h |
18 | reeferDigitalInput | DataType: LocationValueBoolean { "location": , "value": } | N/A | 8h | |
19 | position | DataType: Position { longitude: , latitude: , validity: } | position | 8h | |
20 | heading | Integer | degree | 8h | |
21 | satCount | Integer | amount | 8h | |
22 | reeferTotalHours | Integer | hour | 8h | |
23 | reeferEngineHours | Integer | hour | 8h | |
24 | reeferElectricHours | Integer | hour | 8h | |
25 | reeferSupplyVoltage | Double | volt | Value from 0 to 100, with at most one decimal digit | 8h |
26 | reeferFuel | Integer | percentage | allowed values are from 0 to 100. | 8h |
27 | reeferPowerMode | String | N/A | 8h | |
28 | reeferOperatingMode | String | N/A | 8h | |
29 | reeferReeferOn | Boolean | N/A | 8h | |
30 | reeferEvaporatorTemperature | Double | celsius | 8h | |
31 | reeferAmbientTemperature | Double | celsius | 8h | |
32 | reeferCompartmentSetPoint | DataType: LocationValueDouble { "location": , "value": } | celsius | 8h | |
33 | reeferCompartmentReturnAir | DataType: LocationValueDouble { "location": , "value": } | celsius | 8h | |
34 | reeferCompartmentSupplyAir | DataType: LocationValueDouble { "location": , "value": } | celsius | 8h | |
35 | reeferCompartmentMode | DataType: LocationValueString { "location": , "value": } | N/A | 8h | |
36 | reeferCompartmentSpeedMode | DataType: LocationValueBoolean { "location": , "value": } | N/A | 8h | |
37 | reeferCompartmentHumidity | DataType: LocationValueBoolean { "location": , "value": } | percentage | Allowed values are from 0 to 100. | 8h |
38 | evRemainingCharge | Integer | percentage | Number from 0 (empty) to 100 (full) | 8h |
39 | evRemainingDistance | Double | kilometer | 8h | |
40 | evChargingStatus | String | N/A | 8h | |
41 | evChargingSpeed | Double | kilowatt | 8h | |
42 | evTotalEnergyConsumption | Double | kilowattHour | 8h | |
43 | evBatteryTemperature | Double | celsius | 8h | |
44 | evAmbientTemperature | Double | celsius | 8h | |
45 | ignitionState | Boolean | N/A | 8h | |
46 | reeferCompartmentEvaporatorTemperature | DataType: LocationValueDouble { "location": , "value": } | celsius | 8h | |
47 | reeferSpeedMode | Boolean | N/A | 8h | |
48 | linTemperature | DataType: LocationValueDouble { "location": , "value": } | celsius | 8h | |
49 | linContact | DataType: LocationValueBoolean { "location": , "value": } | N/A | 8h | |
50 | externalPowerAvailable | Boolean | N/A | 8h | |
51 | tbsAvailable | Boolean | N/A | 8h | |
52 | tbsSuppliedVoltage | Integer | millivolt | 8h | |
53 | reeferAvailable | Boolean | N/A | 8h | |
54 | reeferSuppliedVoltage | Integer | millivolt | 8h | |
55 | batteryPackAvailable | Boolean | N/A | 8h | |
56 | batteryPackState | String | N/A | 8h | |
57 | batteryPackNotChargingReason | String | N/A | 8h | |
58 | batteryPackLevel | String | N/A | 8h | |
59 | batteryPackSuppliedVoltage | Integer | millivolt |
Reefer Compartments
These sensors are created for each related item, the default structure in the messageis:
"compartments": [ { "id": 1, "setPoint": 7, "evaporatorTemperature": 1.4, "returnAir": 0, "supplyAir": 0, "mode": "cooling" }, ...]
For each ID, the location of the object is created as the ID ID and a value is set to the value of setPoint, another for Return air, and so on,
This results in the 4 sensors created per compartment, if all 4 values are present (setPoint, returnAir, supplyAir, mode). If only one value is present, only one sensor is generated.
The above example for compartment 1, would create 5 sensors, all have the location 1 and the value would be 7 for setPoint, 0 for returnAir, 0 for supplyAir and “cooling” for mode.
Location/Zones
In some sensors, the location property inside the sensorValue object defines the location or zone of the sensor for the specific measurement.
E.g. in the tireTemperature sensor, it indicates the location of the tire.
For example, the temperature of the first wheel on the left of axis 1 should be indicated by the location value 17. For a mapping of the wheels with the number, see the paragraph wheel location logic. This logic is applied for the following sensors:
- tirePressure
- tireTemperature
- tirePressureStatus
The zone location is more straightforward and it refers to the actual zone with the same number. For example, if in the reeferLoggerTemperature object the location is 2, it means that it refers to the reefer temperature collected from zone 2 of the reefer. This logic applies for:
- reeferLoggerTemperature
- reeferLoggerHumidity
- reeferDigitalInput
Same for LIN sensors, the location indicates the contact sensor in the LIN enumeration. This logic applies for:
- linTemperature
- linContact
Wheel Location logic
The wheels are calculated from the mid-point 8, that means there is no wheel number 8. All the wheels will go from 0-7 or 9-F (15 in hexadecimal).
Also, the number of the wheel location also start from the mid-point, decreasing when on the left of mid-point and increasing when on the right. That means, when we have one wheel on the left it will have the number 7, if we add a second wheel in the same axle on the left side it will have the number 6 and so on.
When we have one wheel on the right it will have the number 9, if we add a second wheel in the same axle on the right side it will have the number A (10) and so on.
The following diagrams should help in understanding the Scalar format for wheel location.

Examples
- from integer to wheel position
- Decimal = 39; hex = 27 ==> axle 2, first wheel to the left
- Decimal = 41; hex = 29 ==> axle 2, first wheel to the right
- Decimal = 54; hex = 36 ==> axle 3, second wheel to the left
- Decimal = 58; hex = 3A ==> axle 3, second wheel to the right
from wheel position to integer
- axle 1, third wheel to the left = 21. In hexadecimal it is 15 (1 stands for axle 1 and 5 stands for third wheel, considering the first one has number 7, the second one has number 6 and so on). Converting 15 from hex to dec, we obtain 21
- axle 5, fifth wheel to the left = 83. Converting the position in hexadecimal we have 5 as first digit due to the axle 5; then we have 3 as second digit by considering the part in bold: 7 = wheel 1; 6 = wheel 2; 5 = wheel 3; 4 = wheel 4; 3 = wheel 5; 2 = wheel 6; 1 = wheel 7; = wheel 8. Then, by converting 53 from hex to dec, we obtain 83
- axle 1, fourth wheel to the right. The value is 28. We take 1 as first digit for the axle; then we take C because is the fourth wheel (9= wheel 1; A = wheel 2; B = wheel 3; C = wheel 4; D = wheel 5; E = wheel 6; F = wheel 7). Then, converting 1C from hex to dec, we obtain 28
- axle 4, first wheel to the right. 49 is the hexadecimal representation (4 for axle 4 and 9 for wheel 1 to the right). Converting it to decimal we obtain 73
Value mapping
Some properties contains a value as string which is mapped to an enumerator. In this section we document all the enumeration used by the sensor module
Pressure threshold status enum values
- extremeOverPressure
- overPressure
- normal
- underPressure
- extremeUnderPressure
Power Mode values
- invalid
- diesel
- electric
Operating Mode values for each zone
- invalid
- powerOn
- powerOff
- cooling
- heating
- defrost
- pretrip
- irregularShutdown
- compulsoryShutdown
- thermostatOff
- sleep
- diagnostics
Reefer Operating Mode values
- invalid
- cycleSentry
- continuous
Propulsion Charging Status values
- notCharging
- charging
- unknown
Battery Pack Level values
- critical
- low
- medium
- high
- full
Battery Pack Charging State values
- notCharging
- charging
- fullyCharged
Battery Pack Not Charging Reason values
- noPower
- temperatureIssue
- error
Measuring Units
Measuring unit define the metric unit that is applicable to the sensor value. If it cannot be defined, N/A will be returned. Here is the list of possible values:
- N/A → Not Applicable
- kilometer → Distance
- kilometers/hour → Distance/Hour (speed)
- kilogram → Weight
- hour → Time
- degree → Angle (min = 0°, max = 360°)
e.g. heading = angle of positioning
- celsius → Temperature in °C
- liter → Volume
- kilopascal → Pressure
- volt → Voltage (min = 9V, max = 32V)
- millivolt → Voltage - 1/1000 of a volt
- kilowatt → Unit of Power
- kilowattHour → KWh - Kilowatts measured within an hour
Special Cases
- position
- percentage → (min = 0, max = 100)
- amount → defines the amount of data
e.g. satCount = number of satellites
Updated 7 days ago