-
Notifications
You must be signed in to change notification settings - Fork 1
/
control.htm
38 lines (37 loc) · 1.38 KB
/
control.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<html>
<br>
<table>
<tr>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<td><button onclick="ajax('http://192.168.4.1/cmd/w')" style="width:160px;height:100px;font-size:40px;">↑↑</button></td>
<td></td>
<th></th>
<th></th>
</tr>
<tr>
<td><button onclick="ajax('http://192.168.4.1/cmd/a')" style="width:160px;height:120px;font-size:40px;">←←</button></td>
<td><button onclick="ajax('http://192.168.4.1/cmd/d')" style="width:160px;height:120px;font-size:40px;">→→</button></td>
<th></th>
<th></th>
</tr>
<tr>
<td><button onclick="ajax('http://192.168.4.1/cmd/s')" style="width:160px;height:100px;font-size:40px;">↓↓</button></td>
<td></td>
<th></th>
<th width="600" align="right"> <button onclick="ajax('http://192.168.4.1/cmd/z')" style="width:160px;height:100px;font-size:40px;">faster</button> <button onclick="ajax('http://192.168.4.1/cmd/x')" style="width:160px;height:100px;font-size:40px;">slower</button> <button onclick="ajax('http://192.168.4.1/cmd/o')" style="width:160px;height:100px;font-size:40px;">stop</button></th>
</tr>
</table>
</html>
<script type="text/javascript">
function ajax(url)
{
var oReq = new XMLHttpRequest();
oReq.open('POST',url,true);
oReq.send();
}
</script>