BlueMicro_HID_Arduino_Library
BlueMicro_HID_Arduino_Library copied to clipboard
Universal BLE/USB HID Library
This may be somewhat of a trivial question, but after combing through the examples and code it's unclear how to use `mouseButtonPress` and `mouseReport` for both the Left Click and...
In order to be able to use my device with multiple computers/phones, I want to quickly change the profile and the pairing keys will be kept in order for me...
Currently the following methods don't work as intended: ``` bluemicro_hid.setBLEManufacturer(DEVICE_MANUFACTURER); bluemicro_hid.setBLEModel(DEVICE_MODEL_NAME); bluemicro_hid.setBLETxPower(4); ``` Issue is with [bluetooth.cpp](https://github.com/jpconstantineau/BlueMicro_HID_Arduino_Library/blob/main/src/bluetooth.cpp) Not currently setup to do a pull request. Following code is commented. Verified...
Currently using the library, we are unable to set the delay used between items in the queue as they are processed. Using the following code actually results in repeated input...
With the current setup, I cannot trigger a BLE disconnect to trigger pairing mode, or swap to another, already paired device. Use case is an NRF52840 that is sealed up...
`bluemicro_hid.setUSBStringDescriptor(DEVICE_BLE_NAME);` I would expect this to be set as USB device name on PC, but it does not work. Alternatively, I would expect the definition in your code to be...
Hello, I greatly appreciate your project as it is allowing me to work with my Adafruit Feather perfectly. However, I think myself and other users would definitely appreciate documentation on...
Seems likely tied to USB enumeration timing with the Adafruit BSP. Without these, there is no enumeration and thus no HID device on the host system. ``` build_flags = -DUSE_TINYUSB...