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.
48 lines
1.3 KiB
48 lines
1.3 KiB
<!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>Home - WiFi Demo</title>
|
|
|
|
<link href="/css/app.css" rel="stylesheet">
|
|
<script src="/js/all.js"></script>
|
|
<script>
|
|
// server root (or URL) - used for local development with remote AJAX calls
|
|
// (this needs CORS working on the target - which I added to esp-httpd)
|
|
var _root = "";
|
|
</script>
|
|
</head>
|
|
<body class="page-home">
|
|
<div id="outer">
|
|
<nav id="menu">
|
|
<div id="brand" onclick="$('#menu').toggleClass('expanded')">WiFi Demo</div>
|
|
<a href="/home" class="selected">Home</a></nav>
|
|
<div id="content">
|
|
<img src="/img/loader.gif" alt="Loading…" id="loader">
|
|
|
|
<h1>Ovládání motoru</h1>
|
|
|
|
<div class="Box center">
|
|
<a class="button btn-blue" id="btn-rev"><<</a>
|
|
<a class="button btn-red" id="btn-stop">Stop</a>
|
|
<a class="button btn-blue" id="btn-fwd">>></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>
|
|
|
|
|
|
<div class="NotifyMsg hidden" id="notif"></div>
|
|
|
|
</div><!-- content -->
|
|
</div><!-- outer -->
|
|
</body>
|
|
</html>
|
|
|