| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1829 人关注过本帖
标题:Qt界面指示灯
只看楼主 加入收藏
flyingucla
Rank: 1
等 级:新手上路
帖 子:14
专家分:0
注 册:2012-4-2
结帖率:50%
收藏
已结贴  问题点数:18 回复次数:1 
Qt界面指示灯
在micro2440按键测试程序中,按下某个键界面中指示灯变亮。我现在自己做了一个界面,界面中有四个指示灯,想实现的功能就是按下某个键,界面中的某个指示灯改变颜色,按键驱动已经做好了,可不可以在开发板原有的按键测试程序的基础上稍做修改,实现这个功能,下面是按键的测试程序:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/select.h>
#include <sys/time.h>
#include <errno.h>
int main(void)
{
int buttons_fd;
char buttons[6] = {'0', '0', '0', '0', '0', '0'};
buttons_fd = open("/dev/buttons", 0);
if (buttons_fd < 0) {
perror("open device buttons");
exit(1);
}
for (;;) {
char current_buttons[6];
int count_of_changed_key;
int i;
if (read(buttons_fd, current_buttons, sizeof current_buttons) != sizeof current_buttons)
{
perror("read buttons:");
exit(1);
}
for (i = 0, count_of_changed_key = 0; i < sizeof buttons / sizeof buttons[0]; i++)
{
if (buttons != current_buttons)
{
buttons = current_buttons;
printf("%skey %d is %s", count_of_changed_key? ", ": "", i+1, buttons ==
'0' ? "up" : "down");
QPalette   pal   =   pushButton->palette();   
pal.setColor(QColorGroup::ButtonText,QColor(255,0,0));   
pushButton->setPalette(pal);  

count_of_changed_key++;
}
}
if (count_of_changed_key) {
printf("\n");
}
}
close(buttons_fd);
return 0;
}

搜索更多相关主题的帖子: include 指示灯 开发 
2012-07-10 08:49
Dyang2012
Rank: 2
等 级:论坛游民
帖 子:3
专家分:18
注 册:2012-6-7
收藏
得分:18 
Qt是什么啊?能跟我简单的讲一下吗?
2012-07-13 10:24
快速回复:Qt界面指示灯
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.031079 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved