Packages

AutoApi is able to parse and execute Auto API binary data

Current section

Files

Jump to
auto_api specs capabilities ignition.json
Raw

specs/capabilities/ignition.json

{
"name": "ignition",
"name_cased": "ignition",
"name_pretty": "Ignition",
"category": "digital_key",
"authorization": true,
"identifier": {
"msb": 0,
"lsb": 53
},
"api": {
"intro": 3,
"update": 12
},
"getters": {},
"setters": [
{
"name": "turn_ignition_on_off",
"mandatory": [
3
],
"description": "Attempt to turn the vehicle engine ignition on or off. When the engine ignition is on, it is possible for the driver to turn on the engine and drive the vehicle."
}
],
"state": "all",
"properties": [
{
"id": 1,
"name": "status",
"name_cased": "status",
"name_pretty": "Status",
"deprecated": {
"new_name": "state",
"reason": "combined with 'accessories_status'"
},
"type": "types.ignition_state",
"examples": [
{
"data_component": "01",
"value": "off",
"description": "Ignition is off"
}
]
},
{
"id": 2,
"name": "accessories_status",
"name_cased": "accessoriesStatus",
"name_pretty": "Accessories status",
"deprecated": {
"new_name": "state",
"reason": "combined with 'status'"
},
"type": "types.ignition_state",
"examples": [
{
"data_component": "03",
"value": "on",
"description": "Accessories power is on"
}
]
},
{
"id": 3,
"name": "state",
"name_cased": "state",
"name_pretty": "State",
"added": 12,
"type": "types.ignition_state",
"examples": [
{
"data_component": "02",
"value": "accessory",
"description": "Ignition state is in accessory"
}
]
}
]
}