使用 python uvdev 设置绝对光标位置



我正在尝试用python模拟图形输入板,因此,我需要能够设置光标的绝对位置。我已经尝试了python-evdev和python-libevdev,但我无法设置绝对位置。将值拧到EV_ABS ABS_X和ABS_Y对光标位置没有任何影响。值得一提的是,模拟按钮和相对定位工作完美。

我在x11上使用带有Gnome的Manjaro 4.19。

我将不胜感激任何帮助,并提前感谢您。

这是必须能够设置绝对光标位置的简单代码,但事实并非如此。

from evdev import UInput, AbsInfo, ecodes as e
import pyautogui
import subprocess
import time
cap = {
e.EV_KEY : [e.BTN_TOUCH],
e.EV_ABS : [
(e.ABS_X, AbsInfo(0, 0, 4080, 0, 0, 5080)),         
(e.ABS_Y, AbsInfo(0, 0, 4080, 0, 0, 5080)),
(e.ABS_PRESSURE, AbsInfo(0, 0, 2040, 0, 0, 0))
]
}
ui = UInput(cap, name='example-device', version=0x3)
for i in range(0,10):
# assign driver to the default display
time.sleep(0.5)
process = subprocess.Popen(["xinput", "list"], shell=True, stdout=subprocess.PIPE)
output = process.stdout.read().decode("utf-8")
print(output)
if "example-device" in output:
print(output)
subprocess.Popen([
"xinput",
"map-to-output",
f"pointer:example-device",
"eDP1"
])
break
else:
raise Exception("Can't map device to display.")
# print cursor position befor cahnge
print(pyautogui.position())
# move mouse cursor
ui.write(e.EV_ABS, e.ABS_X, 20)
ui.write(e.EV_ABS, e.ABS_Y, 20)
ui.syn()
# print cursor position after cahnge
print(pyautogui.position())

好的。我认为要解决这个问题,您需要在EV_KEY中添加BTN_TOOL_PEN。至少这对我有用。如果你有兴趣,你可以在我的github上看到整个项目。

相关内容

  • 没有找到相关文章

最新更新