-
Notifications
You must be signed in to change notification settings - Fork 0
/
gyroacctest.php
66 lines (58 loc) · 1.97 KB
/
gyroacctest.php
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gyroskop a Akcelerometr</title>
<style>
</style>
</head>
<body>
<div>
<h1>Data z gyroskopu a akcelerometru</h1>
<p>Očekávání dat...</p>
<div id="output"></div>
</div>
<script>
// Kód pro povolení přístupu k senzorům
if (typeof DeviceOrientationEvent.requestPermission === 'function') {
DeviceOrientationEvent.requestPermission()
.then(response => {
if (response === 'granted') {
window.addEventListener('deviceorientation', handleOrientation);
window.addEventListener('devicemotion', handleMotion);
} else {
console.error('Permission denied for Device Orientation');
}
})
.catch(console.error);
} else {
// Prohlížeč nepodporuje vyžádání povolení, přidejte události přímo
window.addEventListener('deviceorientation', handleOrientation);
window.addEventListener('devicemotion', handleMotion);
}
function handleOrientation(event) {
const alpha = event.alpha;
const beta = event.beta;
const gamma = event.gamma;
// Zobrazte data na stránce
document.getElementById("output").innerHTML = `
<p>Úhel Alpha: ${alpha}°</p>
<p>Úhel Beta: ${beta}°</p>
<p>Úhel Gamma: ${gamma}°</p>
`;
}
function handleMotion(event) {
const accX = event.acceleration.x;
const accY = event.acceleration.y;
const accZ = event.acceleration.z;
// Zobrazte akceleraci na stránce
document.getElementById("output").innerHTML += `
<p>Akcelerace X: ${accX} m/s²</p>
<p>Akcelerace Y: ${accY} m/s²</p>
<p>Akcelerace Z: ${accZ} m/s²</p>
`;
}
</script>
</body>
</html>