bobsupercow
bobsupercow
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...
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...