mirror of
https://github.com/OpenBluetoothToolbox/SimpleBLE
synced 2025-10-16 05:26:52 +08:00
43 lines
1.7 KiB
Python
43 lines
1.7 KiB
Python
import simplepyble
|
|
|
|
if __name__ == "__main__":
|
|
adapters = simplepyble.Adapter.get_adapters()
|
|
|
|
if len(adapters) == 0:
|
|
print("No adapters found")
|
|
|
|
# Query the user to pick an adapter
|
|
print("Please select an adapter:")
|
|
for i, adapter in enumerate(adapters):
|
|
print(f"{i}: {adapter.identifier()} [{adapter.address()}]")
|
|
|
|
choice = int(input("Enter choice: "))
|
|
adapter = adapters[choice]
|
|
|
|
print(f"Selected adapter: {adapter.identifier()} [{adapter.address()}]")
|
|
|
|
adapter.set_callback_on_scan_start(lambda: print("Scan started."))
|
|
adapter.set_callback_on_scan_stop(lambda: print("Scan complete."))
|
|
adapter.set_callback_on_scan_found(lambda peripheral: print(f"Found {peripheral.identifier()} [{peripheral.address()}]"))
|
|
|
|
# Scan for 5 seconds
|
|
adapter.scan_for(5000)
|
|
|
|
peripherals = adapter.scan_get_results()
|
|
print("The following peripherals were found:")
|
|
for peripheral in peripherals:
|
|
connectable_str = "Connectable" if peripheral.is_connectable() else "Non-Connectable"
|
|
print(f"{peripheral.identifier()} [{peripheral.address()}] - {connectable_str}")
|
|
print(f' Address Type: {peripheral.address_type()}')
|
|
print(f' Tx Power: {peripheral.tx_power()} dBm')
|
|
|
|
manufacturer_data = peripheral.manufacturer_data()
|
|
for manufacturer_id, value in manufacturer_data.items():
|
|
print(f" Manufacturer ID: {manufacturer_id}")
|
|
print(f" Manufacturer data: {value}")
|
|
|
|
services = peripheral.services()
|
|
for service in services:
|
|
print(f" Service UUID: {service.uuid()}")
|
|
print(f" Service data: {service.data()}")
|