Hi!
I am trying to test the CLI over BLE example. I want to use it in another application for logging data to a laptop console over BLE.
However, I am having trouble following the steps in the example documentation. I can compile and run the application just fine, but I'm having trouble starting the ble_serial.py script. Here's the command I'm running:
python ble_serial.py --snr 680834186 --name Nordic_CLI --com COM115 --family NRF52
And here's the output:
Traceback (most recent call last):
File "ble_serial.py", line 64, in <module>
ble_driver_init(args.family[0])
File "ble_serial.py", line 61, in ble_driver_init
from pc_ble_driver_py import config
ImportError: No module named pc_ble_driver_py
I tried "pip3 uninstall nrfutil" and then "pip3 install nrfutil", as well as "pip3 uninstall pc_ble_driver_py" and then "pip3 install pc_ble_driver_py".
However, this does not fix the issue. Can anyone provide some guidance on what I should try? And how do I connect to the board via its destination address (step 4) on a Mac?