You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
416 B
21 lines
416 B
9 years ago
|
<?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">
|
||
|
<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(wfm.init());
|
||
|
</script>
|
||
|
|
||
|
<?php include "_end.php"; ?>
|