forked from onmachine/chrome-serial-monitor
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (35 loc) · 1.28 KB
/
index.html
File metadata and controls
51 lines (35 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<script src="main.js"></script>
<script src="lib/serial.js"></script>
<link href="lib/bootstrap/css/bootstrap.css" rel="stylesheet">
<style type="text/css">
.container {
width: auto;
max-width: 650px;
}
.form-inline {
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Serial Monitor</h1>
</div>
<div class="form-inline">
<select class="span4" id="port-picker"></select>
<select class="span2" id="bitrate-picker"></select>
<span class="label" id="status">Not Connected</span>
</div>
<div class="input-append">
<textarea rows="3" id="input"></textarea>
<button id="send" class="btn btn-primary">Send</button>
</div>
<div class="well well-large" id="output">
</div>
</div>
</body>
</html>