Search found 2 matches

by igi540
Tue Feb 04, 2025 8:22 am
Forum: ESP-IDF
Topic: usb hid device -> esp32s3 -> bluetooth hid output
Replies: 2
Views: 270

Re: usb hid device -> esp32s3 -> bluetooth hid output

Hi, It looks like there’s a fundamental mix-up in the roles being implemented. In your intended setup, the PC is the host, and the keyboard is the device. That means your ESP32S3 needs to act as a Bluetooth HID device (like a standard wireless keyboard), not as a HID host. Currently, your code is us...
by igi540
Thu Jan 30, 2025 3:44 pm
Forum: ESP-IDF
Topic: Not all USB keyboards are detected by USB HOST library
Replies: 4
Views: 1231

Re: Not all USB keyboards are detected by USB HOST library

Hi sraposo, The fact that increasing the log verbosity to "verbose" fixes the issue suggests that the problem is related to timing. The USB host stack may be moving too quickly through the initialization steps, causing some devices to fail during the address assignment phase. Your log indicates that...