-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
executable file
·34 lines (30 loc) · 1003 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>NeoPixel (WS2812B, フルカラーLED) | CHIRIMEN with micro:bit</title>
</head>
<script src="https://cdn.jsdelivr.net/npm/@chirimen/microbit"></script>
<script src="https://cdn.jsdelivr.net/npm/@chirimen/neopixel-i2c"></script>
<script src="main.js"></script>
<body>
<h1>NeoPixel (WS2812B, フルカラーLED) | CHIRIMEN with micro:bit<h1>
<form name="js">
<input type="button" value="Connect" onclick="connect();" />
<input type="button" value="Disconnect" onclick="disconnect();" />
</form>
<div id="msg">---</div>
<hr />
<div>
<input id="nPix" type="button" value="nPixTest1" onclick="nPixTest1();" />
<input
id="nPix"
type="button"
value="nPixTest2"
onclick="setPattern0();"
/>
</div>
<img src="imgs/CMMB_I2C_example5.png" width="700px" />
</body>
</html>