Skip to content

Bluetooth Support in Pico 2 W #9870

@snphysic

Description

@snphysic

CircuitPython version

Adafruit CircuitPython 9.1.1; Raspberry Pi Pico 2 W with rp2350

Code/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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions