-
Notifications
You must be signed in to change notification settings - Fork 0
/
orientation.js
47 lines (38 loc) · 1.18 KB
/
orientation.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
let old_val = 0;
function handleOrientation(event) {
let val = event.alpha;
val = Math.floor(val);
val = Math.abs(val); // fjern evt minus foran
document.getElementById("visOrientering").innerHTML = val;
// til kode til at spare båndbredde ------------------
// hvad er forskelle mellem vinklen nu og sidste gang vi sendte?
let forskel = Math.abs(old_val - val);
// hvis forskellen er større end 5, så sender vi
if (forskel > 15)
{
// send value via MQTT
sendMQTT(val);
old_val = val;
}
}
function startOrientation()
{
//Start-button pressed - so lets hide the button
document.getElementById("startklik").style.display = "none";
// check if it is IOS13 device
if (typeof DeviceOrientationEvent.requestPermission === 'function')
{
DeviceOrientationEvent.requestPermission()
.then(permissionState => {
if (permissionState === 'granted')
{
window.addEventListener("deviceorientation", handleOrientation, false);
}
})
.catch(console.error);
}
else //NON IOS device - just add the eventlistner
{
window.addEventListener("deviceorientation", handleOrientation, false);
}
}