링크 ux C 키보드 정보 가 져 오기
10482 단어 C
cat /proc/bus/input/devices
제 컴퓨터 는 이벤트 4 에 대응 합 니 다. 실현 코드 는 다음 과 같 습 니 다.
#include
#include
#include
#include
#include
#include
#include
#define INPUT_KEYBOARD "/dev/input/event4"
int get_key_board_from_input()
{
int fd = -1, ret = -1;
struct input_event ev;
fd = open(INPUT_KEYBOARD , O_RDONLY);
if(fd < 0) {
printf("open failed, error:%d
", errno);
return -1;
}
while(1) {
memset(&ev, 0, sizeof(struct input_event));
ret = read(fd, &ev, sizeof(struct input_event));
if (ret != sizeof(struct input_event)) {
printf("read error, ret: %d
", ret);
break;
}
if (ev.type == EV_KEY) {
printf("--------------------
");
printf("type = %u.
", ev.type); /* ,EV_KEY */
printf("code = %u.
", ev.code); /* ,/usr/include/linux/input-event-codes.h , KEY_ESC esc */
printf("value = %u.
", ev.value); /* ,0 、1 、2 */
}
}
close(fd);
return ret;
}
이 방법 은 버튼 의 정 보 를 전면적으로 얻 을 수 있 지만 루트 권한 이 필요 합 니 다.
2. 콘 솔 설정 변경 을 통 해 키보드 값 ASCII 코드 가 져 오기
#include
#include
#include
int get_key_board_from_termios()
{
int key_value;
struct termios new_config;
struct termios old_config;
tcgetattr(0, &old_config);
new_config = old_config;
new_config.c_lflag &= ~(ICANON | ECHO);
tcsetattr(0, TCSANOW, &new_config);
key_value = getchar();
tcsetattr(0, TCSANOW, &old_config);
printf("key_value: %d
", key_value);
return 0;
}
루트 권한 없 이 실행 가능
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Visual Studio에서 파일 폴더 구분 (포함 경로 설정)Visual Studio에서 c, cpp, h, hpp 파일을 폴더로 나누고 싶었습니까? 어쩌면 대부분의 사람들이 있다고 생각합니다. 처음에 파일이 만들어지는 장소는 프로젝트 파일 등과 같은 장소에 있기 때문에 파일...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.