-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
76 lines (73 loc) · 2.33 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
<?HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="cosmet.css" type="text/css" media="screen" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="./jquery-timers.js"></script>
<script src="./xdate.js"></script>
<script type="text/javascript" src="cosmet.js"></script>
<script tyle="text/javascript">
window.cosmet_ = new cosmet.GtvCosmet();
</script>
</head>
<body onload="window.cosmet_.start()">
<div class="cosmet">
<div class="graph-container">
<div class="graph"><br/>
<div class="title">
<span>Statistics</span><hr/>
</div>
<span id="graph"></span>
</div>
<div class="status"><br/>
<div class="title">
<span>Current</span><hr/>
</div>
<div class="status-lower">
<div class="watts-cont">
<div class="watt-prev">
<span id="watt">0 W</span><br>
<span class="pred">Average last hour:<br>
<span id="watt-avg">0 W</span>
</span>
</div>
<div class="watt-prediction">
<span id="pred">1.00 kWh</span><br>
<span class="pred">Predicted next 24 hours<br>
<span id="pred-trend">up 0%</span>
</span>
</div>
</div>
<div class="direction"></div>
</div>
</div>
</div>
<div class="details-container">
<div class="current-details">
</div>
<div class="badges" style="margin-top: 10px;">
<div class="title">
<span>Other Sensors</span><hr/>
</div>
<div class="badge temp-container" style="background: #FF3838">
<span id="temp" style="">0.0°C</span>
<span id="temp-text" style="font-size: 15px; padding-top: 15px;">Temperature</span>
</div>
<div class="badge barometer-container" style="background: #49CC71">
<span id="pressure" style="">1.13mb</span>
<span id="pressure-text" style="font-size: 15px; padding-top: 15px;">Pressure</span> </div>
<div class="badge barometer-container" style="">
<img src="./img/1st.png" alt="First Prize" height="80px" style="margin-top: 20px;" />
</div>
<div class="title" style="margin-top: 30px;">
<span>
Current Time: <span id="time"></span>
</span>
<hr/>
</div>
</div>
</div>
</div>
</body>
</html>