zero-hid
zero-hid copied to clipboard
Absolute Mouse Mode
Hey, I am desperately trying to set the mouse cursor to the center of the screen at a resolution of 1920x1080 (x=960, y=560). I tried using the example plugin, but the offset is always significantly off.
`from zero_hid import Mouse from time import sleep
with Mouse(absolute=True) as m: m.move(960, 560) `
Is this the wrong approach? It would be very nice if someone here could help me. Thanks a lot for this great project.