-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
executable file
·35 lines (31 loc) · 1 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>MLX90614 (赤外線非接触・環境温度センサー) | CHIRIMEN with micro:bit</title>
</head>
<script src="https://cdn.jsdelivr.net/npm/@chirimen/microbit"></script>
<script src="https://cdn.jsdelivr.net/npm/@chirimen/mlx90614"></script>
<script src="main.js"></script>
<body>
<h1>MLX90614 (赤外線非接触・環境温度センサー) | CHIRIMEN with micro:bit<h1>
<form name="js">
<input type="button" value="Connect" onclick="connect();" />
<input type="button" value="Disconnect" onclick="disconnect();" />
</form>
<span id="msg"></span>
<hr />
<table>
<tr>
<td>Object Temperature</td>
<td id="obj_temperature"></td>
</tr>
<tr>
<td>Ambient Temperature</td>
<td id="amb_temperature"></td>
</tr>
</table>
<img src="imgs/pinbit_MLX90614.png" width="400" />
</body>
</html>