forked from guilherme-daros/telemetry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvoltages.html
57 lines (54 loc) · 2.03 KB
/
voltages.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
<!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.0" />
<link rel="stylesheet" href="styles.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.2/Chart.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-streaming@1.5.0/dist/chartjs-plugin-streaming.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/paho-mqtt/1.0.1/mqttws31.min.js"></script>
<title>Tensões</title>
</head>
<body>
<div class="flex-container">
<div class="graph-container">
<h3 class="graph-title">vCell1</h3>
<canvas id="vCell1" class="graph"></canvas>
</div>
<div class="graph-container">
<h3 class="graph-title">vCell2</h3>
<canvas id="vCell2" class="graph"></canvas>
</div>
<div class="graph-container">
<h3 class="graph-title">vCell3</h3>
<canvas id="vCell3" class="graph"></canvas>
</div>
<div class="graph-container">
<h3 class="graph-title">vCell4</h3>
<canvas id="vCell4" class="graph"></canvas>
</div>
</div>
<div class="flex-container">
<div class="graph-container">
<h3 class="graph-title">vCell5</h3>
<canvas id="vCell5" class="graph"></canvas>
</div>
<div class="graph-container">
<h3 class="graph-title">vCell6</h3>
<canvas id="vCell6" class="graph"></canvas>
</div>
<div class="graph-container">
<h3 class="graph-title">vCell7</h3>
<canvas id="vCell7" class="graph"></canvas>
</div>
<div class="graph-container">
<h3 class="graph-title">vCell8</h3>
<canvas id="vCell8" class="graph"></canvas>
</div>
</div>
<script src="./brokerConfig.js"></script>
<script src="./voltages.js"></script>
</body>
</html>