EspTinyUSB icon indicating copy to clipboard operation
EspTinyUSB copied to clipboard

ESP32S2 native USB library. Implemented few common classes, like MIDI, CDC, HID or DFU (update).

Results 84 EspTinyUSB issues
Sort by recently updated
recently updated
newest added

using arduino-esp32-2-rc1 and lib-1.3.2 ```` /** * Simple HID mouse and keyboard composite * author: chegewara */ #include "hidcomposite.h" #if CFG_TUD_HID HIDcomposite device; void setup() { Serial.begin(115200); device.begin(); } void...

Esp32s2 is full speed mode only, so variable _bcdUSB on EspTinyUSB constructor must be 0x0110 https://github.com/chegewara/EspTinyUSB/blob/7eba91d1d5569324383e8e89d717d2714c129350/src/esptinyusb.cpp#L114

Is there also Media Key support (planned)? e.g., KEY_MEDIA_NEXT_TRACK , KEY_MEDIA_PLAY_PAUSE, KEY_MEDIA_VOLUME_UP ... Best regards

There is issue with unmout msc device. When device is unmounted from system, but onReady will return true, then tinyusb stack will call onunmout all the time: https://github.com/chegewara/EspTinyUSB/blob/master/src/classes/msc/ramdisk.cpp#L32 We need...

Hi! I added multi layout support Now you can use en_us, es_es, it_it layouts I will try to add more layouts when I have free time To use this: read...

Hi, Thank you for the library! I've got it up and running well and have run some of the examples. I'd like to use it as the basis for an...

Hi, I have currently played the sample code [sd_msc.ino](https://github.com/chegewara/EspTinyUSB/blob/master/examples/device/msc/sd_msc/sd_msc.ino) on an ESP32-S2 and connected it directly to a Linux coputer via USB. My problem is that the data transfer in...

Hi, I have a strange issue, I'm uploading a USB MIDI code through platformio to a esp32 s3 dev kit C-1 v1. On my Mac the USB device is properly...

The board name shows as "MIDI class" on the midi monitor software, as well as in the Windows 10 "Device Manager". Am I doing something wrong, or is this a...

I do apologize for posting this here, but I cannot find any wiki tab on this Github project. I would like to use this library with MIDI. I am a...