-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (87 loc) · 2.6 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<title>BUZZ1000 WebApps</title>
<meta charset='utf-8'/>
<link rel='shortcut icon' type='image/svg' href='webapp/assets/buzzer.svg'>
<style>
html, body {
font-family: 'Ubuntu', sans-serif;
background-color: black;
color: white;
}
a {
color: skyblue;
}
#container {
max-width: 500px;
margin: auto;
padding: 2%;
}
#forkme {
position: fixed;
top: 0px; right: 0px;
display: inline-block;
}
.subtitle {
font-style: italic;
color: gray;
}
.bold {
font-weight: bold;
}
.hint {
color: gray;
font-size: 90%;
margin-bottom: 10px;
}
.infobox {
background: #0f6082;
color: #e9ecef;
border: 1px solid transparent;
padding: 0px 16px;
border-radius: 2px;
}
</style>
</head>
<body>
<div id='container'>
<h1>BUZZ1000 Webapps</h1>
<p class='subtitle'>Arduino Controlled Buzzer System For Events</p>
<p>Please connect the system to your computer and open a buzzer app:</p>
<ul>
<li>
<a href="webapp/buzzer-simple.html">Simple Buzzer App</a>
<div class="hint">Shows player name and plays sound when key 1..6 is pressed.</div>
</li>
<li>
<a href="webapp/buzzer-bars.html">Buzzer App With Bars</a>
<div class="hint">Plays sound when key 1..6 is pressed and displays the score of each player graphical with a vertical bar for comparison.</div>
</li>
<li>
<a href="webapp/buzzer-timer.html">Buzzer App With Timer</a>
<div class="hint">Starts a timer when any key is pressed, stops it and plays a sound when key 1..6 is pressed and displays the last stopwatch time.</div>
</li>
<li>
<a href="webapp/buzzer-separate-timers.html">Buzzer App With Separate Timers</a>
<div class="hint">Starts a timer for each player when any key is pressed, stops the individual timer and plays a sound when key 1..6 is pressed.</div>
<div class="hint"><i>Hint: buzzer lock timeout (constant <code>BUZZER_LOCK_TIMEOUT</code> in Arduino <code>buzzer.ino</code> file) should be set to <code>0</code> for this webapp.</i></div>
</li>
</ul>
<div class='infobox'>
<p class='bold'>
How to play offline
</p>
<ol>
<li>Go to the <a href="https://github.com/schorschii/buzz1000">GitHub repo</a>, click on "Code" -> "Download ZIP"</li>
<li>Extract the ZIP file onto your desktop</li>
<li>Open index.html with Chrome or Firefox</li>
</ol>
</div>
<p>
Please visit the <a href="https://github.com/schorschii/buzz1000">Github repository</a> for more information.
</p>
</div>
<a id='forkme' href='https://github.com/schorschii/buzz1000' target='_blank'><img src='webapp/assets/forkme.png' /></a>
</body>
</html>