micropython / micropython-lib

Core Python libraries ported to MicroPython

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BLE: Bluetooth Low Energy

kerby1998 opened this issue · comments

Hi, I want to know if it this module is compatible with Bluetooth Low Energy.

Micropython has BLE support on many devices, and this library has aioble as a high level async interface to use BLE more easily than many other platforms.

Ok, because I've tried to pair my gopro to my raspberry pi pico w with aioble but it didn't work. Some sources on internet state that micropython cannot pair with raspberry pi pico w. Is it true ?

That is because there is no pairing support for the PICO_W which uses the btstack. You will need to do quite a bit of work to get pairing to work using aioble with the btstack. Code needs to be added primarily to modbluetooth_btstack.c in the Micropython build distribution. We have been working on it for quite a while and still have a ways to go.

ok thanks