-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscript.js
138 lines (127 loc) · 3.92 KB
/
script.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/*
Get sensor readings
Gets the device's sensors. Also makes a QR code of the URL, to make
it easy to open the page on a mobile device.
Uses
https://github.com/kazuhikoarase/qrcode-generator
as the QR Code generator library. It's hosted at this CDN:
https://unpkg.com/[email protected]/qrcode.js
and makes it the source of an image tag in the page.
Uses a responsive CSS to adjust the size of the type as well.
created 14 Feb 2021
modified 9 Jun 2024
by Tom Igoe
*/
// variables for the sensors:
let accel, gyro, light, compass;
function setup() {
var netSpan = document.getElementById("networkType");
netSpan.innerHTML = "Sensors found:<br>";
// get the error div so you can show errors:
var errorDiv = document.getElementById("error");
// get the accelerometer and start it:
if (window.Accelerometer) {
try {
accel = new Accelerometer({ frequency: 60 });
accel.addEventListener("reading", accelReading);
accel.start();
netSpan.innerHTML += "Accelerometer started.<br>";
} catch (error) {
errorDiv.innerHTML += error + "<br>";
}
} else {
errorDiv.innerHTML += "Accelerometer is not present. <br>";
}
// get the gyroscope and start it:
if (window.Gyroscope) {
try {
gyro = new Gyroscope({ frequency: 60 });
gyro.addEventListener("reading", gyroReading);
gyro.start();
netSpan.innerHTML += "Gyrometer started.<br>";
} catch (error) {
errorDiv.innerHTML += error + "<br>";
}
} else {
errorDiv.innerHTML += "Gyrometer is not present. <br>";
}
// get the ambient light sensor and start it:
if (window.AmbientLightSensor) {
try {
light = new AmbientLightSensor({ frequency: 60 });
light.addEventListener("reading", lightReading);
light.start();
netSpan.innerHTML += "Ambient light sensor started.<br>";
} catch (error) {
errorDiv.innerHTML += error + "<br>";
}
} else {
errorDiv.innerHTML += "Ambient Light Sensor is not present. <br>";
}
// get the magnetometer and start it:
if (window.Magnetometer) {
try {
compass = new Magnetometer({ frequency: 60 });
compass.addEventListener("reading", compassReading);
compass.start();
netSpan.innerHTML += "Magnetometer started.<br>";
} catch (error) {
errorDiv.innerHTML += error + "<br>";
}
} else {
errorDiv.innerHTML += "Magnetometer is not present. <br>";
}
// make a QR code of the URL:
getQrCode();
}
function accelReading() {
var accelDiv = document.getElementById("accel");
accelDiv.innerHTML =
"Accel X " +
accel.x.toPrecision(2) +
" m/s<sup>2</sup><br>Accel Y " +
accel.y.toPrecision(2) +
" m/s<sup>2</sup><br>Accel Z " +
accel.z.toPrecision(2) +
" m/s<sup>2</sup>";
}
// TODO: get units
function gyroReading() {
var gyroDiv = document.getElementById("gyro");
gyroDiv.innerHTML =
"gyro X " +
gyro.x.toPrecision(2) +
"<br>gyro Y " +
gyro.y.toPrecision(2) +
"<br>gyro Z " +
gyro.z.toPrecision(2);
}
function lightReading() {
var lightDiv = document.getElementById("light");
lightDiv.innerHTML = "illuminance: " + light.illuminance + " lux";
}
// TODO: get units
function compassReading() {
var compassDiv = document.getElementById("compass");
compassDiv.innerHTML =
"magnetometer X " +
compass.x.toPrecision(2) +
"<br>magnetometer Y " +
compass.y.toPrecision(2) +
"<br>magenetometer Z " +
compass.z.toPrecision(2);
}
// add a QR code of the URL when the page loads
function getQrCode() {
// make the QR code:
let qr = qrcode(0, "L");
qr.addData(document.URL);
qr.make();
// create an image from it:
let qrImg = qr.createImgTag(2, 8, "qr code of " + document.URL);
// get the image and label:
let label = document.getElementById("qr");
label.innerHTML = qrImg + "<br>" + document.URL;
}
// on page load, call the QR code function:
document.addEventListener("DOMContentLoaded", setup);