-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·32 lines (32 loc) · 846 Bytes
/
index.html
File metadata and controls
executable file
·32 lines (32 loc) · 846 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta
content="width=device-width, user-scalable=no, initial-scale=1"
name="viewport"
/>
<title>SWITCH AND LED</title>
<script src="node_modules/@chirimen-raspi/polyfill/polyfill.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@chirimen/sht30"></script>
<script src="https://cdn.jsdelivr.net/npm/@chirimen/ads1015"></script>
<script src="./main.js" defer></script>
<style>
p {
color: blue;
text-align: center;
font-size: 24px;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<p><output id="temp"></output></p>
<p><output id="bend"></output></p>
<p><output id="hugged"></output></p>
</body>
</html>