-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
executable file
·47 lines (43 loc) · 1.2 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
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title></title>
</head>
<script src="https://cdn.jsdelivr.net/npm/@chirimen/microbit"></script>
<script src="main.js"></script>
<body>
<form name="js">
<input type="button" value="Connect" onclick="connect();" />
<input type="button" value="Disconnect" onclick="disconnect();" />
</form>
<div id="msg">---</div>
<hr />
<table>
<tr>
<td colspan="2">
<input type="button" value="Read Sensors" onclick="readSensor();" />
</td>
</tr>
<tr>
<td>Internal Sensors</td>
<td id="isens">-</td>
</tr>
<tr>
<td colspan="2">LED</td>
</tr>
<tr>
<td><input id="txt" type="text" value="Hello!" /></td>
<td><input type="button" value="Print" onclick="print();" /></td>
</tr>
<tr>
<td>
<input id="txt2" style="width: 50px" type="text" value="0" />(0..39)
</td>
<td><input type="button" value="showIcon" onclick="showIcon();" /></td>
</tr>
</table>
<img src="imgs/CMMB_Embed.png" width="300" />
</body>
</html>