Files
mesh-network-project/test.py

10 lines
138 B
Python

import bleak
import asyncio
async def main():
devices = await bleak.BleakScanner.discover()
print(devices)
asyncio.run(main())