RoCorbera

Results 26 comments of RoCorbera

You should have in mind that Esp_8_bit has a HID stack for classic bluetooth. BLE and Classic Bluetooth are not compatible with each other.

I'm not the author of this project. But as far as I can see, from the code, you should work with gui_hid(...) function which in turn handles Keyboard HID events...

This sounds awesome! I think all you have to do is to clone this project, apply your code modifications and then submit a PR (Pull Request) here to this same...

Does S2 support USB Host interface and protocol? I don't think so. As far as I have read, it only supports Client USB...

We can follow the specs at https://esp32.com/viewtopic.php?f=10&t=14532 So far: USB Device — Supported USB Host — Not supported (IDF-530) and based on the status of this issue (https://github.com/espressif/esp-idf/issues/5454): Ivan Grokhotkov...

Thanks for the update, @chegewara ! Would it work for ESP32 WROOM as well? For future reference of others, here are some links about tinyUSB and ESP32: https://github.com/hathach/tinyusb https://www.esp32.com/viewtopic.php?t=15908 https://github.com/chegewara/esp-idf/tree/master/examples/peripherals/usb...

No need for it... All you have to do is to use "ESP32 Sketch Data Upload" to include ROMs to ESP32 SPIFFS. As writtnen in the README.md of this project:...

> What is "CI"? Continuous integration (CI) automatically builds, tests, and integrates code changes within a shared repository. https://resources.github.com/ci-cd/

This issue is due to changes in the version 2.3.0. It has broken the use of `build_opt.h` for, at least Windows, that had the option to disable the HardwareTimer. Therefore,...

This issue is due to a regression in v2.3.0 as explained in https://github.com/stm32duino/Arduino_Core_STM32/issues/1837#issuecomment-1261884640 There is a way to solve it as explained in the link above: ``` there is a...