Webportal v1

embedded apps

API Reference - Car.driverDistractionOn

Car.driverDistractionOn

Type Event
wave 2
wave 3
wave 4

Event triggered when the distraction status is changed to ON (display driver distraction popup).

Note: This event is triggered when the speed goes below 5km/h.

Example

1
2
3
4
5
6
7
8
9
10
11
try {
	
	// Car
	if ((typeof Car !== "undefined") && (typeof Car.addEventListener !== "undefined")) {
		Car.addEventListener("driverDistractionOn", function(){
			alert("The driver distraction mode is now turned on.");
		});
	}
}catch(e) {
	DealWithCarError(e);
}

Appeared in Software version 5.14.11.30