-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
140 lines (116 loc) · 3.31 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1">
<title>HELIOS [v4]</title>
<link rel="icon" type="image/png" href="img/favicon.png">
<link rel="stylesheet" href="css/index.css">
<!-- minified jquery -->
<script type="text/javascript" src="js/zepto.min.js"></script>
<!-- CSV parser -->
<script type="text/javascript" src="js/csv.js"></script>
<!-- D3.js -->
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script type="text/javascript" src="js/index.js"></script>
<style>
.flex_container {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.flex_container h3{
text-align: left;
}
.live_data{
font-size: 2em;
text-align: left;
padding-left: 20px;
}
</style>
</head>
<body>
<main class="container">
<h1 id="title">Helios</h1>
<hr></hr>
<nav>
<ul>
<li><a href="#current_state">Current State</a></li>
<li><a href="#history">History</a></li>
<li><a href="#raw_data">Raw Data</a></li>
<li><a href="#admin">Admin Tools</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
<hr></hr>
<a name="current_state"><h2>Current State</h2></a>
<div id="batteryContainer" name="current_state">
<div id="batteryOutline">
<div id="charge">
<div id="percent">??%</div>
</div>
</div>
<div class="flex_container">
<div>
<h3>Net Power</h3>
<div class="live_data"><span id="live_power">-</span> W</div>
</div>
<div>
<h3>Temperature</h3>
<div class="live_data"><span id="live_temperature">-</span> °F</div>
</div>
<div>
<h3>Humidity</h3>
<div class="live_data"><span id="live_moisture">-</span> %</div>
</div>
<div>
<h3>Terminal Voltage</h3>
<div class="live_data"><span id="live_voltage">-</span> V</div>
</div>
</div>
</div>
<hr></hr>
<a name="history"><h2>History</h2></a>
<div id="charts" class="flex_container">
</div>
<hr></hr>
<a name="raw_data"><h2>Raw Data <a id="toggleTable" class="hidden" href="#"></a></h2></a>
<div>
<table id="data" style="display:none">
<tr>
<th>Time</th>
<th>Voltage In (V))</th>
<th>Current In (mA)</th>
<th>Terminal Voltage (V)</th>
<th>Voltage Out (V)</th>
<th>Current Out (ma)</th>
<th>Temperature (°)</th>
<th>Humidity (%)</th>
</tr>
</table>
</div>
<hr></hr>
<a name="admin"><h2>Admin Tools</h2></a>
<div id="admin_panel">
<h3>Panel Setup</h3>
<p>Panel should be set at <span id="angle">-</span>° off vertical for best results
at your current season and lattitude (<span id="lat">-</span>°).</p>
<p><a id="ip" href="#">Arduino Control Panel</a></p>
<p><a href="changelog.html">Changelog</a></p>
</div>
<hr></hr>
<a name="about"><h2>About</h2></a>
<div>
<p><b><em>Helios</em></b> was the personification of the Sun in Greek mythology.</p>
<p>This project aims to design a modular framework for building custom
solar power charge systems that can be monitored remotely.</p>
<p>The base of this project was a conjoined effort by
Ed Cheswick (EE), Katie Garrison (ME), Colin Leath (EE), Nathan Sprenkle (CoE)
supervised by Dr. Ziang Zhang.</p>
</div>
</main>
<footer>
WCP37 - Modular Power - 2015-2016
</footer>
</body>
</html>