-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
18 lines (18 loc) · 890 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<!-- Origin Trial Token, feature = WebUSB (For Chrome M57+), origin = https://webusb.github.io, expires = 2017-06-19 -->
<meta http-equiv="origin-trial" data-feature="WebUSB (For Chrome M57+)" data-expires="2017-06-19" content="Ag83MurQOa5N4SKRCqqtSlbycfe08s5LgUiqEI7J3jTk2NEIpRp7SLPz2i+EBDuXyf+AeRMdD6BI++kTSJmGzQEAAABReyJvcmlnaW4iOiJodHRwczovL3dlYnVzYi5naXRodWIuaW86NDQzIiwiZmVhdHVyZSI6IldlYlVTQjIiLCJleHBpcnkiOjE0OTc4OTM2OTV9">
<title>RGB LED</title>
<script src="../serial.js"></script>
<script src="rgb.js"></script>
</head>
<body>
<p>
<button id="connect">Connect</button> <span id="status"></span>
</p>
<input type="range" min="0" max="255" value="0" id="red"/>
<input type="range" min="0" max="255" value="0" id="green"/>
<input type="range" min="0" max="255" value="0" id="blue"/>
</body>
</html>