Skip to content

Vehicle Events

Info

This document is a work in progress.

Currently, Vehicle events contain below events, still working in progress:

  • Vehicle Events
    • Start Engine Event - When ignition is turned on, HMI application should send "START_ENGINE" event.
    • Stop Engine Event - When ignition is turned off, HMI application should send "STOP_ENGINE" event.

Start Engine Event

When ignition is turned on, HMI application should send a "START_ENGINE" event.

No mandatory data field need to be filled in.

1
2
3
if let event = TNStartEngineEvent.builder().build() {
    dataCollectorClient.send(event: event)
}
1
2
3
4
TNStartEngineEvent * event = [[TNStartEngineEvent builder] build];
if (event != NULL) {
    [dataCollectorClient sendWithEvent:event];
}

Stop Engine Event

When ignition is turned off, HMI application should send a "STOP_ENGINE" event.

No mandatory data field need to be filled in.

1
2
3
if let event = TNStopEngineEvent.builder().build() {
    dataCollectorClient.send(event: event)
}
1
2
3
4
TNStopEngineEvent * event = [[TNStopEngineEvent builder] build];
if (event != NULL) {
    [dataCollectorClient sendWithEvent:event];
}