This repository was archived by the owner on May 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (34 loc) · 1.64 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
<!DOCTYPE html>
<html lang="nl">
<head>
<title>Alfred Pennyworth</title>
<script defer async src="js/pennyworth.js"></script>
<script defer async src="js/linguisticsEngine.js"></script>
<script defer async src="js/bootstrap.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/paho-mqtt/1.0.2/mqttws31.min.js" type="text/javascript"></script>
</head>
<body>
<b>Alfred Pennyworth</b><br />
<label for="speech-recognition-threshold">Spraak kantelpunt</label>
<input id="speech-recognition-threshold" type="range" min="0" max="1" value="0.5" step="0.1" /><br />
<label for="speech-recognition-keyword">Butlernaam</label>
<input id="speech-recognition-keyword" placeholder="Butlernaam" /><br />
<label for="talkback">Terugspreken</label>
<input type="checkbox" id="talkback">
<select id="voicelist"></select>
<br /><br />
<b>MQTT</b><br />
<input type="text" id="mqtt-host" value="" placeholder="MQTT Host" />
<input type="text" id="mqtt-port" value="" placeholder="MQTT WS Port" />
<input type="checkbox" id="mqtt-ssl"> <label for="mqtt-ssl">SSL</label><br />
<input type="text" id="mqtt-username" value="" placeholder="MQTT Username" />
<input type="password" id="mqtt-password" value="" placeholder="MQTT Password" />
<input type="button" id="mqtt-connect" value="->">
<br /><br />
<b>Apparaat lijst</b><br />
<textarea id="devices" rows="10" cols="50"></textarea><br /><br />
<b>Logboek</b><br />
<div id="log">
</div>
</body>
</html>