forked from bumblebeefr/poppy-monitor
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathreachy.html
80 lines (71 loc) · 2.83 KB
/
reachy.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Reachy monitor</title>
<link rel="icon" href="img/poppy-monitor.png" type="image/png">
<link rel="shortcut icon" href="img/poppy-monitor.png" type="image/png">
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="lib/bootstrap/css/bootstrap-theme.css" rel="stylesheet">
<link href="lib/rmodal/animate.min.css" rel="stylesheet">
<link href="lib/rmodal/rmodal.css" rel="stylesheet">
<link href="lib/font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="lib/raphaelicons/raphaelicons.css" rel="stylesheet">
<link href="lib/notiFire/css/notiFire.css" rel="stylesheet">
<link href="css/monitor-reachy.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.0.5/es5-shim.min.js"></script>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
</style>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
<robot_title></robot_title>
<audio id="alarm" src="./sound/alarm.ogg" loop></audio>
<div>
<button type="button" class="btn btn-default" onclick="Poppy.setCompliant(false)">
<i class="fa fa-bolt"></i> Activer tous les moteurs
</button>
<button type="button" class="btn btn-default" onclick="Poppy.setCompliant(true)">
<i class="fa fa-bed"></i> Désactiver tous les moteurs
</button>
<button type="button" class="btn btn-default" onclick="Poppy.stopAllPrimitives(true)">
<i class="fa fa-coffee"></i> Arreter toutes les primitives
</button>
</div>
<br/>
<behavior></behavior>
</div>
<div class="col-md-6">
<robot></robot>
</div>
</div>
</div>
<script src="lib/ajax.js"></script>
<script src="lib/rmodal/rmodal.min.js"></script>
<script src="lib/hjson.js"></script>
<script src="lib/draggabilly.pkgd.js"></script>
<script src="lib/lodash.js"></script>
<script src="lib/numeral/numeral.js"></script>
<script src="lib/notiFire/js/notiFire.js"></script>
<script src="lib/riot/riot+compiler.js"></script>
<script src="lib/hammer.min.js"></script>
<script src="js/helpers.js"></script>
<script src="js/poppy-object.js"></script>
<script src="tags/robot.tag" type="riot/tag"></script>
<script src="tags/motor.tag" type="riot/tag"></script>
<script src="tags/behavior.tag" type="riot/tag"></script>
<script>
riot.mount('*');
</script>
</body>
</html>