much improved status page, reduced array sizes in wifi cgi

This commit is contained in:
2016-03-28 18:38:30 +02:00
parent 23681c9a0f
commit 5bb7a303b3
39 changed files with 512 additions and 375 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php $page = 'waveform';
include "_start.php"; ?>
<h1>Waveform</h1>
<div class="Box center">
<label for="count">Samples:</label>
<input id="count" type="number" value="100" style="width:100px">&nbsp;
<a id="load" class="button btn-green">Load</a>
</div>
<div class="Box medium">
<div id="chart" class="ct-chart ct-wide"></div>
</div>
<script>
$().ready(page_waveform.init());
</script>
<?php include "_end.php"; ?>