tryna get bluetooth to work

This commit is contained in:
2026-03-07 09:15:45 +11:00
parent b19ad3ce82
commit 0f6cdabd25
4 changed files with 22 additions and 2 deletions

10
test.py Normal file
View File

@@ -0,0 +1,10 @@
import bleak
import asyncio
async def main():
devices = await bleak.BleakScanner.discover()
print(devices)
asyncio.run(main())