python-evdev icon indicating copy to clipboard operation
python-evdev copied to clipboard

Python bindings for the Linux input subsystem

Results 72 python-evdev issues
Sort by recently updated
recently updated
newest added

Hi, Do you know if it would be possible to provide wheels (manylinux one even https://github.com/pypa/manylinux ) for this package? The project can be built as a wheel just fine...

Helps your $EDITOR find the constants from ecodes.c, making for a more pleasant developer experience. I've got a "grand plan" to extend evdevremapkeys to support importing your own Python modules,...

I was working on program for controlling computer over LAN, but when I tried to add mouse control. Nothing seemed to happen. Keyboard works fine, but mouse seems to be...

Both setuptools and pytest based. ```console + /usr/bin/python3 setup.py test running test WARNING: Testing via this command is deprecated and will be removed in a future version. Users looking for...

On my Raspberry PI 3B+, when I create a uinput device using a non-root user, the device does not show up quickly enough for UInput._find_device_fallback() to find it. (It works...

int fd = open("/dev/uinput", O_WRONLY | O_NONBLOCK); ...... ioctl(fd, UI_DEV_CREATE); /* * On UI_DEV_CREATE the kernel will create the device node for this * device. We are inserting a pause...

I've encountered an issue with evdev in my application, which stopped working as expected. The problem is that evdev is not capturing LEFTSHIFT key presses correctly. Adding a small delay...

I'm using a controller with plenty of unknown keys, so added in this code to handle the unknown key codes by adding the entry to the keys dictionary, with the...

I've created a python script that detects inactivity on gamepads and disconnects them from the system if they are bluetooth devices. The script is working fine with no problems when...

I am using evedev for Raspberry Pi Zero : Bluetooth HID Proxy - primarily based on https://github.com/Hacksore/bt-hid-proxy everything works fine when i am in windows - or even when i...