Hi,
I was wondering if it is possible to create a program that can control mouse movement as well as perform some keyboard button functionality at the same time?
Hi,
I was wondering if it is possible to create a program that can control mouse movement as well as perform some keyboard button functionality at the same time?
Hi Martin,
In the HID mouse example, the program makes use of a function
"mouse_movement_sent()"
This function takes in two arguments(horizontal and vertical movement). I was trying to include the mouse button press into this, but doesn't seem to work.
Hi Martin,
In the HID mouse example, the program makes use of a function
"mouse_movement_sent()"
This function takes in two arguments(horizontal and vertical movement). I was trying to include the mouse button press into this, but doesn't seem to work.
again, in
"mouse_movement_sent()"
the buffer [0-2] is made to store the movement values. But i thought HID mouse report format is like [Buttons, X-translation, Y-translation.
Am sure that I screwed up somewhere but still not sure how find it.