-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (74 loc) · 2.76 KB
/
Copy pathindex.html
File metadata and controls
75 lines (74 loc) · 2.76 KB
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
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-2.2.1.min.js"
integrity="sha256-gvQgAFzTH6trSrAWoH1iPo9Xc96QxSZ3feW6kem+O00="
crossorigin="anonymous">
</script>
<link rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
crossorigin="anonymous">
</head>
<body>
<div class="container">
<button id="recordButton" class="pull-left btn btn-danger">Record</button>
<div id="timerContainer" class="pull-right">
</div>
<div class="page-header text-center">
<h2>Kitchen Assistant</h2>
</div>
<div class="row">
<div class="col-lg-2">
<div id="instructionsContainer" class="panel panel-default" style="margin-left: -60px;">
<div class="panel-heading">
<h4>What to say when you're in the kitchen...</h4>
</div>
<div class="panel-body">
<h5>...to get around.</h5>
<ul class="list-unstyled">
<li>What's for dinner?</li>
<li>Let's get started</li>
<li>What's next?</li>
<li>Go Back</li>
</ul>
<h5>...to keep it easy on the eyes.</h5>
<ul class="list-unstyled">
<li>Read</li>
<li>Read everything</li>
<li>Can you repeat that?</li>
</ul>
<h5>...to learn something new.</h5>
<ul class="list-unstyled">
<li>What ingredients do I need?</li>
<li>What equipment do I need?</li>
<li>What do I do now?</li>
<li>List ingredients/equipment</li>
<li>Describe ingredient/equipment</li>
<li>Display ingredient/equipment</li>
</ul>
<h5>...to control time.</h5>
<ul class="list-unstyled">
<li>Start/Stop/Pause timer</li>
<li>Turn off alarm</li>
</ul>
</div>
</div>
</div>
<div id="mainContainer" class="col-lg-8">
</div>
<div class="col-lg-2">
</div>
</div>
</div>
<script src="/vendor/lodash.min.js"></script>
<script src="/vendor/timer.js"></script>
<script src="/javascript/presenter.js"></script>
<script src="/javascript/sound_handler.js"></script>
<script src="/javascript/controls.js"></script>
<script src="/javascript/commands.js"></script>
<script src="/javascript/voice_command_dictionary.js"></script>
<script src="/javascript/speech_handler.js"></script>
<script src="/javascript/run.js"></script>
</body>
</html>