-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
executable file
·43 lines (38 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
<!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>
<hr />
<input type="button" value="MOTOR ON" onclick="motorControl(true);" />
<input type="button" value="MOTOR OFF" onclick="motorControl(false);" />
<div id="msg">---</div>
<ul>
<li>
(3V、低消費電力モーターをmicrp:bitの3V端子で駆動した場合)<br /><img
src="imgs/pinbit_microbit_Hello_Real_World_Motor.png"
width="400"
/>
</li>
<li>
<a href="imgs/CMMB_GPIO_EXT_example0aE.png"
>消費電が大きいモーターで外部電源を使用した回路例</a
>
</li>
<li>
<a href="imgs/CMMB_GPIO_EXT_example0bE.png"
>ジェネリックMOSFETモジュールを使用した回路例</a
>
</li>
</ul>
</body>
</html>