-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
28 lines (26 loc) · 1.38 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
<!DOCTYPE html>
<meta charset="utf-8">
<title>BB-8 Control</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link rel="stylesheet" href="main.css">
<link rel="icon" href="icon-144x144.png">
<link rel="manifest" href="bb8.webmanifest">
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Origin Trial Token, feature = Web Bluetooth, origin = https://operasoftware.github.io, expires = 2017-01-24 -->
<meta http-equiv="origin-trial" data-feature="Web Bluetooth" data-expires="2017-01-24" content="Aht/Eh3TdOHu39rmMwSz5DdQKpsplWM9OPV6mEq1ZjZK5E3FWs7Jl/bv3W3ggHVBekI6pAAx/fq0fdiPKKPeRQYAAABdeyJvcmlnaW4iOiJodHRwczovL29wZXJhc29mdHdhcmUuZ2l0aHViLmlvOjQ0MyIsImZlYXR1cmUiOiJXZWJCbHVldG9vdGgiLCJleHBpcnkiOjE0ODUzMDIzOTl9">
<h1><span>BB-8 Control</span></h1>
<div>
<button class="button-connect" id="connect">Connect</button>
<button class="button-stop" id="stop">Stop</button>
</div>
<main>
<button class="button-aim" id="aim">Aim</button>
<button class="button-led button-led-red" id="red">Red</button>
<button class="button-led button-led-blue" id="blue">Blue</button>
<button class="button-led button-led-green" id="green">Green</button>
<button class="button-led button-led-off" id="off">Off</button>
</main>
<div>
<img src="joypad.svg" id="joypad" width="300" height="300" alt="">
</div>
<script async src="main.js"></script>