- Code: Select all | TOGGLE FULL SIZE
pip3 install adafruit-circuitpython-ble
I can then create a bit of python to talk to an Arduino Nano 33 BLE. Great, works like a charm, and you can communicate between a python program and the Nano over BLE.
I'm interested in having the Ubuntu 20.04 machine communicate via python, but acting a remote keyboard. I would figure installing the hid library would work:
- Code: Select all | TOGGLE FULL SIZE
pip3 install adafruit-circuitpython-usb-hid
However when trying to import the usb_hid library for any of the python examples:
- Code: Select all | TOGGLE FULL SIZE
import usb_hid
or, when using
- Code: Select all | TOGGLE FULL SIZE
from adafruit_hid.consumer_control_code import ConsumerControlCode
I get the 'No module named 'usb_hid' is found'. It appears something else needs to be installed, but from the documentation (https://github.com/adafruit/Adafruit_Ci ... hon_Bundle) it seemed all dependencies should have been installed. What has been missed? In my review of the documentation, one piece said Linux support was limited, but I didn't know if that meant things like this.