-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 988 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 lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no" />
<title>Arduino colorizer</title>
<link rel="stylesheet" href="css/styles.css?v=1.0">
<script src="js/jquery-3.0.0.min.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="form">
<!--
90 bytes is the maximum message length Arduino can handle by default
https://github.com/knolleary/pubsubclient
-->
<input id="message" class="message" maxlength="90" disabled />
</div>
<div class="colors">
<button class="red" data-color="R" />
<button class="green" data-color="G" />
<button class="blue" data-color="B" />
<button class="yellow" data-color="Y" />
<button class="silver" data-color="_">SPACE</button>
<button class="black" id="send">SEND</button>
</div>
<script src="js/main.js"></script>
</body>
</html>