Search found 2 matches

by arturolimon
Mon Mar 19, 2018 12:12 am
Forum: ESP-IDF
Topic: HID library
Replies: 4
Views: 29048

Re: HID library

UPDATE: Not sure why but I'm now able to move the mouse in every direction by increasing the size of the logical minimum/logical maximum report entry to two bytes: const uint8_t REPORT_MAP[] = { 0x05, 0x01, // Usage Page (Generic Desktop Ctrls) 0x09, 0x02, // Usage (Mouse) 0xA1, 0x01, // Collection ...
by arturolimon
Fri Mar 16, 2018 3:43 am
Forum: ESP-IDF
Topic: HID library
Replies: 4
Views: 29048

Re: HID library

Hi, First of all thanks for sharing the HID library! I'm working on an IMU-based mouse using the ESP32 and an MPU-9150. Everything seems to be working good so far except for one thing: I'm having trouble sending negative values for the X and Y coordinates. I see the mouse moving in the positive dire...