Martin Fischer
Martin Fischer
Ok so I got the temperature example to work with the following modifications: - disable the two calls to `self._ble.config(addr_mode=2)` as described. - on the iPhone, use the "nRF connect"...
to conclude on my initial goal of reading out the `current time service` from an Iphone, this code here works ;) (hastly PoC code..) ``` import sys sys.path.append("") from micropython...
Opened https://github.com/micropython/micropython/issues/13642
I'm facing the same issue with my raspberry pico w. I'm trying to read the `current time service` characteristic from an iPhone. I guess the gatt error 5 is the...
> But MICROPY_PY_BLUETOOTH_ENABLE_PAIRING_BONDING seems to be defined in the the make file (?) huh looking into it it may not be... since it uses `btstack` not `nimble` (at least from...
> Yeah I'm pretty sure bonding is currently only supported on stm32 thanks for the feedback. Yeah I feared that a bit... pitty since bonding is sometimes required to readout...
Ok so the bonding support is not enabled on the pico w, but it can be done via ``` diff --git a/ports/rp2/CMakeLists.txt b/ports/rp2/CMakeLists.txt index 3a46fdaa7..2ced4e86e 100644 --- a/ports/rp2/CMakeLists.txt +++ b/ports/rp2/CMakeLists.txt...
> I'll give it a shot with a pyboard d. so I tried - but faced isses... see. https://github.com/micropython/micropython/issues/13639 @andrewleech thanks for the pointers! I had a look around those...
> I scratched my head a number of times before I got a robust way to always see errors, and then things got smoother! I'll try to include some debugging...
> I wanted the REPL log to UART0 or 1, so I tried os.dupterm(machine.UART(0)) and os.dupterm(machine.UART(1)) but without success. The first one just freezes the REPL on USB, the second...