lighting status
This topic is unavailable for Lexus vehicles.
Description
Provides details on the condition of all the lights that are reported on by firmware.
Field | datatype | Description |
---|---|---|
utime | string | Best estimate of when this message is from, host clock in UTC |
output | uint32 | bitfield of lights that are reported on by firmware |
vehicle | string | unique vehicle name the data is associated to. |
topic | string | type of telemetry data |
Light types
FRONT LEFT = 0x1;
FRONT RIGHT = 0x2;
REAR LEFT = 0x4;
REAR RIGHT = 0x8;
BRAKE LR = 0x10;
BRAKE CENTER = 0x20;
TAILLIGHTS = 0x40;
HEADLIGHTS = 0x80;
HIGHBEAMS = 0x100;
WIPERS = 0x200;
HORN = 0x400;
DEFROST = 0x800;
AIR_CONDITIONING = 0x1000;
REVERSE = 0x4000
Topic/channel string
For Realtime API
Pass the comma seperated topic name as a query param
/.vehicle.{vehiclename}.LIGHTING_STATUS
For Batch API - TBD
To access the Batch API, you need to include the vehicle name and topic name as path parameters in the URL.
/vehicles/{vehiclename}/topics/LIGHTING_STATUS
JSON Output
Order of fields might differ
{
"output": "128",
"topic": "LIGHTING_STATUS",
"utime": "1683642288780031",
"vehicle": "vehiclename"
}