码迷,mamicode.com
首页 > 其他好文 > 详细

获取键盘按键值

时间:2015-03-04 16:55:29      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:c   键盘   

很久以前的代码拿出来了!熟悉linux键盘驱动的这段代码太容易啦!


/*获取键盘的按值*/
#include <stdio.h>
#include <linux/input.h>
#include <stdlib.h>
#include <fcntl.h>
#include <assert.h>
struct info
{
	struct timeval time;
	unsigned short type;
	unsigned short code;
	unsigned int value;
};
int main()
{
	int fd;
	struct info node;
	fd = open("/dev/input/event0",O_RDWR);
	if(fd<0)
	{
		printf("open error!\n");
	}
	//assert(fp);
	while(1)
	{
		long i=0;
		fflush(stdout);
		read(fd,&node,sizeof(struct info));
		if(node.type == EV_KEY)
		{
			printf("code :%d\n",node.code);
			printf("value: %d\n",node.value);
		}
	}
	
}


获取键盘按键值

标签:c   键盘   

原文地址:http://blog.csdn.net/zhangxxxww/article/details/44062155

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!