window.addEventListener("devicelight", this.lightEvent, true);
window.addEventListener("deviceproximity", this.proxEvent, true);
lightEvent: function(lightData) {
lightData.value (in lux)
},
proxEvent: function(proxData) {
proxData.min <= .value <= .max (in cm)
},
window.removeEventListener("devicelight", this.lightEvent, true);
window.removeEventListener("deviceproximity", this.proxEvent, true);
// Taschenlampe mittels navigator.mozCameras.getCamera
// Funktioniert nicht immer und kann sich jederzeit ändern, bitte Code aif GitHub nachlesen.