Hi, i'm using a script to emulate the mouse with the android sensors, it works really well, but it makes jumps in some aleatory positions(I think is aleatory beacuse it changes every time i close freepie, or it depends on how close is the cursor from the end of the desktop at the moment the program start runing or somethin like that), that happen when you try to rotate or looking too up/down (even if you only rotate a few, it works better with the phone turned back)
This is the script:
Code: Select all
def update():
yaw = -android.googleYaw
pitch = android.googlePitch
deltaYaw = filters.delta(yaw)
deltaPitch = filters.delta(pitch)
mouse.deltaX = deltaYaw*multiply
mouse.deltaY = deltaPitch*multiply
if starting:
multiply = 200
android.update += update
Any ideas of what is causing this?, because other than that the script is really good, I get a better tracking than other scripts as freetrack or vireioSMT (the latter works great too, but loses calibration and have some latency).