forked from monteslu/j5-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (35 loc) · 1.26 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
<!DOCTYPE html>
<html>
<head>
<title>johnny-five</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.css"/>
<link rel="stylesheet" type="text/css" href="bootstrap/css/material.css"/>
</head>
<body class="container-fluid">
<div class="row">
<label for="serialSelect" class="col-xs-2 col-md-1 control-label">Port:</label>
<div class="col-xs-8 col-md-4">
<div class="form-control-wrapper" id="devices"></div>
</div>
<div class="col-xs-2 col-md-1">
<button type="button" class="btn btn-primary" id="refreshBtn">
<span class="glyphicon glyphicon-refresh"></span>
</button>
</div>
<div class="col-xs-6 col-md-3">
<button type="button" class="btn btn-success btn-block" id="programBtn">
Install Firmata
</button>
</div>
<div class="col-xs-6 col-md-3">
<button type="button" class="btn btn-success btn-block" id="runBtn">
RUN <span class="glyphicon glyphicon-play"></span>
</button>
</div>
</div>
<div id="editor"></div>
<div id="infoArea" style="overflow: scroll; height: 200px;"></div>
<!-- our apps code and other dependencies -->
<script src="ui.js"></script>
</body>
</html>