-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (104 loc) · 3.56 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hyperloop</title>
<link rel="stylesheet" href="/css/styles.css">
</head>
<body>
<div id="desktop">
<div id="upper-side">
<div id="hl-logo">
<a href="index.html"><img id="hl-logo-img" src="/images/hyperloop-logo.JPG" alt="hl-logo"></a>
</div>
<h1 id="title">HYPER VISOR</h1>
<div id="button-space">
<span id="hamburguer" onclick="openNav()">☰ <i class="fa fa-bars"></i> </span>
</div>
</div>
<div class="topnav" id="myLinks">
<a href="https://hyperloopupv.com/" target="_blank">Hyperloop UPV</a>
<a href="/html/something.html">Past metrics</a>
<a href="/html/about.html">About</a>
</div>
<div id="middle-side">
<div id="hour-div">
<h3 class="time">Time clock</h3>
<p id="time">00:00:00</p>
<h3 class="time">Timer</h3>
<p id="timer">00:00:00</p>
</div>
<div id="tooltipMessage" class="tooltip"></div>
<table class="data_table" >
<tr>
<th></th>
<th data-tooltip="m/s">Speed</th>
<th >Airgap</th>
<th >Current</th>
<th >Voltage</th>
</tr>
<tr>
<th>present</th>
<td class="current" id="speed">0</td>
<td class="current" id="airgap">0</td>
<td class="current" id="current">0</td>
<td class="current" id="voltage">0</td>
</tr>
<tr>
<th>min</th>
<td id="min-s">0</td>
<td id="min-a">0</td>
<td id="min-c">0</td>
<td id="min-v">0</td>
</tr>
<tr>
<th>mean</th>
<td id="mean-s">0</td>
<td id="mean-a">0</td>
<td id="mean-c">0</td>
<td id="mean-v">0</td>
</tr>
<tr>
<th>max</th>
<td id="max-s">0</td>
<td id="max-a">0</td>
<td id="max-c">0</td>
<td id="max-v">0</td>
</tr>
<tr>
<th>sdv</th>
<td id="sdv-s">0</td>
<td id="sdv-a">0</td>
<td id="sdv-c">0</td>
<td id="sdv-v">0</td>
</tr>
</table>
<div id="button-div">
<button class="button-class" id="button-save-json">JSON Save</button>
<button class="button-class" id="button-save-csv">CSV Save</button>
<button class="button-class" id="button-info">Help</button>
</div>
</div>
<div id="lower-side">
<div class="canvas-container">
<!-- <h3>Speed</h3> -->
<div class="canvas" id="canvas1"></div>
</div>
<div class="canvas-container">
<!-- <h3>Airgap</h3> -->
<div class="canvas" id="canvas2"></div>
</div>
<div class="canvas-container">
<!-- <h3>Current</h3> -->
<div class="canvas" id="canvas3"></div>
</div>
<div class="canvas-container">
<!-- <h3>Voltage</h3> -->
<div class="canvas" id="canvas4"></div>
</div>
</div>
</div>
<script src="js/plotly.min.js"></script>
<script src="/js/tcp_values.js"></script>
</body>
</html>