parent
04087f80de
commit
abf135da4e
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,41 @@ |
||||
<!doctype html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
||||
|
||||
<title>Waveform - Current analyzer</title> |
||||
|
||||
<link href="/css/app.css" rel="stylesheet"> |
||||
|
||||
|
||||
<script src="/js/all.js"></script> |
||||
</head> |
||||
<body class="page-waveform"> |
||||
<div id="outer"> |
||||
<nav id="menu"> |
||||
<div id="brand" onclick="$('#menu').toggleClass('expanded')">Current analyzer</div> |
||||
<a href="/">Home</a><a href="/wifi">WiFi config</a><a href="/waveform" class="selected">Waveform</a><a href="/fft">FFT</a><a href="/spectrogram">Spectrogram</a><a href="/transient">Power-on transient</a><a href="/about">Credits & About</a></nav> |
||||
<div id="content"> |
||||
|
||||
<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> |
||||
|
||||
</div> |
||||
</div> |
||||
</body> |
||||
</html> |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -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"> |
||||
<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"; ?> |
@ -1,3 +1,3 @@ |
||||
#!/bin/bash |
||||
|
||||
xterm -title "ESP html build" -e "source $HOME/.bashrc && ./.web-build_do.sh" |
||||
xterm -title "ESP html build" -e "source $HOME/.bashrc && ./_web-build_do.sh" |
||||
|
Loading…
Reference in new issue