blob: 45ec687bcefa019fb67e21b6411fc5b58c7628ad (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<title>IoT Project</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<p id="instructions">
Click anywhere on the screen to move the robot!
</p>
<button id="reset">Reset map</button>
<div id="robot">
<img src="robot.png" alt="robot image" style="height: 10vh;">
</div>
<div id="cross">
<img src="cross.png" alt="cross image" style="height: 20px">
</div>
<canvas id="drawing-board">
</canvas>
<script src="https://unpkg.com/mqtt/dist/mqtt.min.js"></script>
<script src="./temp_robot.js"></script>
<script src="./temp.js"></script>
</body>
</html>
|