forked from Autodrop3d/serialTerminal.com
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
66 lines (44 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<div id="columnContainer">
<div id="container">
<canvas id="bg"></canvas>
</div>
<div id="flexContainer">
<h5>Baud:</h5>
<input type="text" id="baud" list="baudList" style="width: 12ch;" onclick="this.value = ''"
onchange="localStorage.baud = this.value">
<datalist id="baudList">
<option value="9600">9600</option>
<option value="38400">38400</option>
<option value="57600">57600</option>
<option value="115200">115200</option>
<option value="256000">256000</option>
<option value="1000000">1000000</option>
<option value="2000000">2000000</option>
<option value="3400000">3400000</option>
</datalist>
<button id="startStop" onclick="connectSerial()">Connect</button>
</div>
<div id="flexContainer">
<h5>CSV buffer (char):</h5>
<input type="text" id="csvBufferSize" style="width: 12ch;"
onchange="if (this.value > terminalBufferLength) csvBufferSize = this.value">
<button id="startStop" onclick="saveCSV()">Save</button>
<button onclick="clearBuffers()">Clear</button>
</div>
<div id="flexContainer">
<input type="text" id="lineToSend">
<button onclick="sendSerialLine()">Send</button>
</div>
</div>
<script type="module" src="/js/3Dvisualiser.js"></script>
<script type="module" src="/js/serial.js"></script>
</body>
</html>