This commit is contained in:
PaulK
2024-11-19 10:12:02 +01:00
commit acea5ba561
29 changed files with 1139 additions and 0 deletions

19
controller.html Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bluetooth Controller Auswahl</title>
</head>
<body>
<h1>Verfügbare Bluetooth-Controller</h1>
<form action="/connect" method="post">
<select name="controller">
{% for addr, name in controllers %}
<option value="{{ addr }}">{{ name }}</option>
{% endfor %}
</select>
<button type="submit">Verbinden</button>
</form>
</body>
</html>