ESP32-USB-Soft-Host
ESP32-USB-Soft-Host copied to clipboard
An Arduino wrapper to @sdima1357's usb_soft_host esp-idf example
Hello, We're testing with a keyboard connected to the ESP32-DevKit C-32E. But when I type on the keyboard, I don't see the keys. GPIO has DP connected to 16 and...
Hi, will USB-MIDI device works?
The Lib works fine with an apple mouse (desc.idVendor = 0x05acdesc.idProduct = 0x0304). I need to connect a USB QuickScan. Any idea? Any other usb scanner? Thankyou
I'm trying to make a low cost keyboard latency tester, wondering if ESP32 can do it, but I have no logic analyzer.
Base on the [example](https://github.com/tobozo/ESP32-USB-Soft-Host/blob/5cc393f3528038a66225840551d890cd7d8c15d1/examples/USB_Test/usbkbd.h) here, I added [ESP32 BLE Keyboard library](https://github.com/T-vK/ESP32-BLE-Keyboard) to it. ```cpp #include BleKeyboard bleKeyboard; void setup() { //... Serial.println("Starting BLE work!"); bleKeyboard.begin(); return; } ``` I found...
I couldn't get "New device detected on USB" at all. I have an ESP32-CAM. Here's the pinout: https://i0.wp.com/randomnerdtutorials.com/wp-content/uploads/2020/03/ESP32-CAM-pinout-new.png?quality=100&strip=all&ssl=1 I have tried with multiple PIN configurations and only for DP_P0 and...
Does not support digispark, USBHID emulation
Does the library supports esp8266/NodeMCU?
Hi, I appreciate this isn't an issue, but just wondering if it's possible to add support to send data? I have a universal HID device I created that I'd like...
Hi, Can you provide an example on how i can catch data from a connected mouse? the mouse gets detected, but nothing more then that. if I plug in a...