-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.17 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ESP32 BLE Controller</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding-top: 50px;
}
button {
padding: 10px 20px;
margin: 10px;
font-size: 16px;
}
</style>
</head>
<body>
<h1>ESP32 BLE Controller</h1>
<button id="connect">Connect to ESP32</button>
<button id="increaseAttack" disabled>Increase Attack</button>
<button id="increaseHealth" disabled>Increase Health</button>
<script>
document.getElementById("connect").addEventListener("click", function () {
// Add BLE connection logic here
});
document
.getElementById("increaseAttack")
.addEventListener("click", function () {
// Add logic to send command to increase attack
});
document
.getElementById("increaseHealth")
.addEventListener("click", function () {
// Add logic to send command to increase health
});
</script>
</body>
</html>