Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lakinduakash/uinput-with-char
convert char to key code in uinput-linux
https://github.com/lakinduakash/uinput-with-char
kernel-module linux uinput
Last synced: 16 days ago
JSON representation
convert char to key code in uinput-linux
- Host: GitHub
- URL: https://github.com/lakinduakash/uinput-with-char
- Owner: lakinduakash
- License: gpl-3.0
- Created: 2018-06-25T19:18:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-25T19:27:54.000Z (over 6 years ago)
- Last Synced: 2024-04-14T09:04:03.588Z (7 months ago)
- Topics: kernel-module, linux, uinput
- Language: C
- Size: 16.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Char to KEY_CODE linux/uinput.h
convert char to key code in uinput-linux
You can use this as helper method when working with `linux/uinput.h`.
Ex:
```
convert "a" => KEY_A
convert "A" => KEY_A + KEY_SHIFT
```
This project still have no completed source. Contributions are warmly welcome.