ESP8266 part of the f105-motor-demo project (see f105-motor-demo_stm32)
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.
|
|
|
<!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></nav>
|
|
|
|
<div id="content">
|
|
|
|
|
|
|
|
<h1>Waveform</h1>
|
|
|
|
|
|
|
|
<div class="Box center" id="samp-ctrl">
|
|
|
|
<div>
|
|
|
|
<label for="count">Samples</label>
|
|
|
|
<input id="count" type="number" value="500">
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<label for="freq">Freq. <span class="mq-tablet-max" style="font-weight:normal;">(Hz)</span></label>
|
|
|
|
<input id="freq" type="number" value="4000">
|
|
|
|
<span class="mq-normal-min">Hz</span>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<a id="load" class="button btn-green">Load</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="Box medium">
|
|
|
|
<div id="chart" class="ct-chart ct-wide"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
$().ready(page_waveform.init());
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|