added readme

This commit is contained in:
Kavish Devar
2024-09-27 03:01:15 +05:30
parent b735a461c7
commit 790d0f7338
2 changed files with 44 additions and 4 deletions

View File

@@ -243,8 +243,13 @@ def connect_bluetooth_device():
print("AirPods are already connected.")
return
print("Connecting to AirPods...")
subprocess.run(["bluetoothctl", "connect", AIRPODS_MAC])
print("Checking if AirPods are available...")
result = subprocess.run(["bluetoothctl", "devices"], capture_output=True, text=True)
if AIRPODS_MAC in result.stdout:
print("AirPods are available. Connecting...")
subprocess.run(["bluetoothctl", "connect", AIRPODS_MAC])
else:
print("AirPods are not available.")
time.sleep(2) # Wait for the connection to establish