-
Notifications
You must be signed in to change notification settings - Fork 0
/
telemetry.html
166 lines (135 loc) · 4.17 KB
/
telemetry.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Morehead City, NC Telemetry</title>
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="stylesheet" type="text/css" href="seasons.css"/>
<script src="seasons.js"></script>
</head>
<body onload="setup();">
<div id="title_bar">
<div id="title">
<h1 class="page_title">Morehead City, NC</h1>
<p class="lastupdate">02/23/2021 02:10:00 PM</p>
</div>
<div id="rss_link"><a href="rss.xml">RSS</a></div>
<div id="reports">
Monthly Reports:
<select name="reports" onchange="openTabularFile(value)">
<option value="2020-06">2020-06</option>
<option value="2020-07">2020-07</option>
<option value="2020-08">2020-08</option>
<option value="2020-09">2020-09</option>
<option value="2020-10">2020-10</option>
<option value="2020-11">2020-11</option>
<option value="2020-12">2020-12</option>
<option value="2021-01">2021-01</option>
<option value="2021-02">2021-02</option>
<option selected>- Select Month -</option>
</select>
<br/>
Yearly Reports:
<select name="reports" onchange="openTabularFile(value)">
<option value="2020">2020</option>
<option value="2021">2021</option>
<option selected>- Select Year -</option>
</select>
<br/>
</div>
</div>
<div id="contents">
<p><a href="index.html">❰ Current Conditions</a></p>
<div id="widget_group">
<div id='sensors_widget' class="widget">
<div class="widget_title">
<a href="telemetry.html">Sensor Status</a>
<a class="widget_control"
onclick="toggle_widget('sensors')">♦</a>
</div>
<div class="widget_contents">
<table>
<tr><th>Battery Status</th><th></th></tr>
<tr>
<td class="label">Outside Temperature Battery</td>
<td class="data"><span class="status_ok">OK</span>
</td>
</tr>
<tr>
<td class="label">Beer Fridge Battery</td>
<td class="data"><span class="status_low">LOW</span>
</td>
</tr>
<tr>
<td class="label">Garage Battery</td>
<td class="data"><span class="status_ok">OK</span>
</td>
</tr>
<tr>
<td class="label">Nursery Battery</td>
<td class="data"><span class="status_ok">OK</span>
</td>
</tr>
<tr>
<td class="label">Main Fridge Battery</td>
<td class="data"><span class="status_ok">OK</span>
</td>
</tr>
<tr>
<td class="label">Lightning Battery</td>
<td class="data"><span class="status_ok">OK</span>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="plot_group">
<div id="history_widget" class="widget">
<div id="plot_title" class="widget_title">Telemetry:
<a class="button_selected" id="button_history_day"
onclick="choose_history('day')">Day</a>
<a class="button" id="button_history_week"
onclick="choose_history('week')">Week</a>
<a class="button" id="button_history_month"
onclick="choose_history('month')">Month</a>
<a class="button" id="button_history_year"
onclick="choose_history('year')">Year</a>
</div>
<div id="history_day" class="plot_containter" style="display:none">
</div>
<div id="history_week" class="plot_containter" style="display:none">
</div>
<div id="history_month" class="plot_containter" style="display:none">
</div>
<div id="history_year" class="plot_containter" style="display:none">
</div>
</div>
</div>
<div id='identifier_widget' class="widget">
<div class="widget_title">
</div>
<div class="widget_contents">
<table>
<tr>
<td class="label">Latitude</td>
<td class="data">34° 44.60' N</td>
</tr>
<tr>
<td class="label">Longitude</td>
<td class="data">076° 43.23' W</td>
</tr>
<tr>
<td class="label">Altitude</td>
<td class="data">8 feet</td>
</tr>
<tr>
<td class="label">WeeWX</td>
<td class="data">4.4.0</td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>