-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (26 loc) · 890 Bytes
/
index.html
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
<!--
index.html
-->
<html>
<head>
<title>Machine Vision Enabled Bot For Object Tracking</title>
<link rel="stylesheet" href='../static/style.css'/>
<style>
body {
text-align: center;
}
</style>
</head>
<body>
<h1>MVBOT Live Streaming</h1>
<h3><img src="{{ url_for('video_feed') }}" width="40%"></h3>
<hr>
<h5> PAN Angle: <a href="/pan/-"class="button">-</a> [ {{ panServoAngle }} ] <a href="/pan/+"class="button">+</a> </h5>
<h5> TILT Angle: <a href="/tilt/-"class="button">-</a> [ {{ tiltServoAngle }} ] <a href="/tilt/+"class="button">+</a> </h5>
<h5> <a href="/forward"class="button">Forward</a> </h5>
<h5> <a href="/left"class="button">Left</a> <a href="/stop"class="button">Stop</a> <a href="/right"class="button">Right</a> </h5>
<h5> <a href="/reverse"class="button">Reverse</a> </h5>
<hr>
<p> Testing Phase </p>
</body>
</html>