working pre changes big

This commit is contained in:
2025-12-01 20:09:58 -05:00
parent 644291ee54
commit 2970ad4c5a
12 changed files with 2146 additions and 94 deletions
+15
View File
@@ -0,0 +1,15 @@
import asyncio
from bleak import BleakClient
address = "CF:1C:C7:CB:5C:B3"
async def main():
print(f"Connecting to {address}...")
# winrt is for windows, bluez is for linux
async with BleakClient(address, timeout=20.0) as client:
print(f"Connected: {client.is_connected}")
# If this prints True, you have bypassed the filter!
asyncio.run(main())