Results 464 comments of chegewara

Oh yes, it should be something like this: ``` // this is in class bool USBacmDevice::deinit() { for (size_t n = 0; n < config_desc->bNumInterfaces; n++) { usb_host_interface_release(_host->clientHandle(), _host->deviceHandle(), n);...

I dont think you can find any examples. CH340, CP210X and FTDI all are using proprietary protocols. In esp-idf you can find USB host library which should work with CP210X,...

Hi, it requires different or updated report map descriptor. For example keyboard class or composite class could be extended. Yes, that may be done eventually.

Well, this library is not very popular and now its not on top of my list to upgrade. Recently ive been playing with USB host (esp-idf), but temporary it is...

No, and hidcomposite.cpp is not ready to send media keys. You would need to update library/class code to do it.

WebUSB requires bcdUSB to be 0x0210, but of course you may be right.

Hi, as for now i still think that support for S3 in arduino is not good, even if i did not test it personally. Another thing is that at the...

Hi, thanks for testing it with S3. You can create PR and i will merge it, with one exception. There is no need to change `EP_NUM`, you have API to...

Maybe that slash makes a difference on your OS? > usb/usb_host.h VS > usb\usb_host.h

Yes, it may be the problem with timing. I am suggesting to play with last parameter in this line: https://github.com/chegewara/EspTinyUSB/blob/master/src/device/hid/hidkeyboard.cpp#L16 and delay in this line (delay should be longer than...