-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>VL53L0X (レーザー距離センサー) | CHIRIMEN with micro:bit</title>
<link rel="stylesheet" href="styles.css" />
</head>
<script src="https://cdn.jsdelivr.net/npm/@chirimen/microbit"></script>
<script src="https://cdn.jsdelivr.net/npm/@chirimen/vl53l0x"></script>
<script src="main.js"></script>
<body>
<div class="header">
<h1>L53L0X (レーザー距離センサー) | CHIRIMEN with micro:bit<h1>
<form name="js">
<input type="button" value="Connect" onclick="connect();" />
<input type="button" value="Disconnect" onclick="disconnect();" />
<input id="cnct" type="button" value="Connect?" ></input>
</form>
<hr />
</div>
<div class="main">
<img class="photo" src="https://www.jaos.co.jp/files/products/other/old_1608/A008512A_1.jpg">
<div class="contents">
<div id="msg">---</div>
</div>
</div>
</body>
</html>