-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
32 lines (28 loc) · 1.03 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>
<title>blink(1) WebHID demo colorpicker</title>
<script type="module" src="script.js"></script>
<script type="module" src="blink1-webhid.js"></script>
</head>
<body>
<h1>blink(1) WebHID demo colorpicker</h1>
<p>This demo is for the
<a href="https://blink1.thingm.com">blink(1) USB notification light</a></p>
<p>For more details on WebHID, see the
<a href="https://github.com/robatwilliams/awesome-webhid">WebHID awesome list </a> </p>
<p>For more demos and see quickly how to set this up,
see <a href="https://todbot.github.io/blink1-webhid/">blink1-webhid</a>
</p>
<p>
<div><button id="connect-button"> Connect to blink(1) </button>
Status: <span id="status"> not connected</span>
</div>
</p>
<p>
<div><canvas width="300" height="255" id="canvas_picker"></canvas></div
<div>HEX: <input type="text" id="hex"></input></div>
<div>RGB: <input type="text" id="rgb"></input></div>
</p>
</body>
</html>