44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Grow Controller</title>
|
|
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width">
|
|
<script type='text/javascript' src='myip.js'></script>
|
|
<script type='text/javascript' src='curr.js'></script>
|
|
</head>
|
|
<body onload='CurrInit();'>
|
|
<h1>Grow Controller - Current Sense</h1>
|
|
<blockquote>
|
|
<table width='800' border='0'>
|
|
<tr>
|
|
<td colspan='3' align='center'>
|
|
<canvas id='curr' width='790' height='400'></canvas>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width='*' align='left'>
|
|
<div id='uptime'>x:xx:xx</div>
|
|
</td>
|
|
<td width='20%' align='right'>
|
|
<div id='currText'>xx</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</blockquote>
|
|
<table>
|
|
<tr valign="top">
|
|
<td>NAV:</td>
|
|
<td>
|
|
<a href='/'>Home</a> |
|
|
<a href='/config'>Config</a> |
|
|
<a href='/scan'>Scan</a> |
|
|
<a href='/rssi'>RSSI</a> |
|
|
<a href='/curr'>Current</a> |
|
|
<a href='/config?ssid=reset&pass=reset' onclick=\"return confirm('Are you sure?')\">Factory Reset</a> |
|
|
<a href='/about'>About</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|