forked from micropython/micropython
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
Description
CircuitPython version
Adafruit CircuitPython 9.1.1; Raspberry Pi Pico 2 W with rp2350Code/REPL
import _bleio
try:
ble = _bleio.BLERadio()
print("BLE initialized successfully!")
except RuntimeError as e:
print("Error initializing BLE:", e)
import _bleio
adapter = _bleio.adapter
if adapter:
print("BLE adapter is available:", adapter)
else:
print("No BLE adapter found.")Behavior
soft reboot
Traceback (most recent call last):
File "", line 4, in
AttributeError: 'module' object has no attribute 'BLERadio'
soft reboot
No BLE adapter found.
Description
I am trying to use RP Pico 2 W Bluetooth to connect the RP5 to Pico by using Bluetooth for my project. But it seems that the latest version of Firmware doesn't support BLE library. I get these errors when I am trying to get connect.
Additional information
No response