Upload files to "/"
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import asyncio
|
||||
from bleak import BleakScanner
|
||||
|
||||
async def test():
|
||||
print("[*] Scanning for 5 seconds...")
|
||||
devices = await BleakScanner.discover(timeout=5)
|
||||
for d in devices:
|
||||
print(f" {d.address} - {d.name}")
|
||||
print("[+] Scan complete")
|
||||
|
||||
asyncio.run(test())
|
||||
Reference in New Issue
Block a user