Files
mesh-network-project/test.py

10 lines
138 B
Python
Raw Normal View History

2026-03-07 09:15:45 +11:00
import bleak
import asyncio
async def main():
devices = await bleak.BleakScanner.discover()
print(devices)
asyncio.run(main())