python-uinput
python-uinput copied to clipboard
Pythonic API to Linux uinput module
I can get keyboard and mouse working, and have a xbox360 as joystick, it can control games like torcs and flightgear, but cannot get it working here. Also, seems no...
I see no acivity on tickets and a few pending pull request, I like to know the project status or if there is an alternate repo from someone that is...
I've been trying to run the example keyboard script on a Raspberry Pi 3B+ running Raspbian Stretch (both as root and as a normal user, with /dev/uinput set temporarily to...
For those days that you feel like you're just spinning your wheels... but you want to make sure you're spinning them as accurately as possible!
Hi! I've been able to install uinput by following comments on this issue [https://github.com/tuomasjjrasanen/python-uinput/issues/3] and I wanted to try the library. After a copy&paste on a new file, I've started...
This script, based on the [provided keyboard example](https://github.com/tuomasjjrasanen/python-uinput/blob/master/examples/keyboard.py): ```py import time import uinput def main(): events = (uinput.KEY_A, uinput.KEY_Z,) with uinput.Device(events) as device: time.sleep(1) device.emit_click(uinput.KEY_A) device.emit_click(uinput.KEY_Z) if __name__ == "__main__":...
Doesn't work with console [Advance Mame](https://www.advancemame.it/) on Raspberry Pi. I'm not sure why but key press/release event may be happening too quickly and is being missed by console [Advance Mame](https://www.advancemame.it/)...
Same code works in an interactive shell, but not `sudo python keypress.py start` no errors, just not expected beahviour ``` import uinput import sys arg = sys.argv[1] if arg ==...
I tried SCROLLUP and SCROLLDOWN key without success. I presume there are extra parameters necessary to make this work, but I do not see a special case to provide these.