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.
 
 
 
 
 
 
f105-motor-demo_esp/html_src/page_home.php

20 lines
497 B

<?php $page = 'home';
include "_start.php"; ?>
<h1>Ovládání motoru</h1>
<div class="Box center">
<a class="button btn-blue" id="btn-rev">&lt;&lt;</a>&nbsp;&nbsp;&nbsp;
<a class="button btn-red" id="btn-stop">Stop</a>&nbsp;&nbsp;&nbsp;
<a class="button btn-blue" id="btn-fwd">&gt;&gt;</a>
</div>
<div class="Box center">
<input type="range" id="control-range" value="0" min="-100" max="100" step="0.1">
</div>
<script>
$().ready(page_home.init);
</script>
<?php include "_end.php"; ?>