T-vK / ESP32-BLE-Mouse

Bluetooth LE Mouse library for the ESP32 (Arduino IDE compatible)
724 stars 139 forks source link

Add sendReport #40

Open touchgadget opened 2 years ago

touchgadget commented 2 years ago

I added a sendReport so it can be used with a USB to BLE mouse pass through.

USBMouseReport *report;

bleMouse.sendReport(report->buttons, report->x, report-y, report->wheel);

If interested I can push a PR.