1 Star 0 Fork 1

qingsonggege / openwrt_mt7688_ctest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
evctl_kbd.c 11.35 KB
一键复制 编辑 原始数据 按行查看 历史
Midas 提交于 2017-11-02 19:09 . improve a little
/*----------------------------------------------------
A simple way to use keyboard to control mplayer....
Midas
--------------------------------------------------*/
/*
* Copyright 2002 Red Hat Inc., Durham, North Carolina.
*
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation on the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice (including the
* next paragraph) shall be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* This is a simple test program that reads from /dev/input/event*,
* decoding events into a human readable form.
*/
/*
* Authors:
* Rickard E. (Rik) Faith <faith@redhat.com>
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <fcntl.h>
#include <errno.h>
#include <time.h>
#include <linux/input.h>
#include <stdbool.h>
//+++++ Mouse key to contrl mplayer----------------------------
#define KEY_F1 59
#define KEY_F2 60
#define KEY_F3 61
#define KEY_F4 62
#define KEY_F5 63
#define KEY_UP_ARROW 103
#define KEY_DOWN_ARROW 108
#define KEY_LEFT_ARROW 105
#define KEY_RIGHT_ARROW 106
struct input_event event;
int main(int argc, char **argv)
{
char name[64]; /* RATS: Use ok, but could be better */
char buf[256] = { 0, }; /* RATS: Use ok */
unsigned char mask[EV_MAX/8 + 1]; /* RATS: Use ok */
int version;
int fd = 0;
int rc;
int i, j;
char *tmp;
//+++++ Mouse key to contrl mplayer----------------------------
unsigned int volume_val=50;
char strCMD[50];
//feature for USB keyboard
bool USB_KEYBOARD=false;
bool FEATURE_REPEAT=false;
int evnum_kbd; // event number for keyborad input
//---------------+++end
#define test_bit(bit) (mask[(bit)/8] & (1 << ((bit)%8)))
for (i = 0; i < 32; i++) {
sprintf(name, "/dev/input/event%d", i);
if ((fd = open(name, O_RDONLY, 0)) >= 0) {
ioctl(fd, EVIOCGVERSION, &version);
ioctl(fd, EVIOCGNAME(sizeof(buf)), buf);
ioctl(fd, EVIOCGBIT(0, sizeof(mask)), mask);
printf("%s\n", name);
printf(" evdev version: %d.%d.%d\n",
version >> 16, (version >> 8) & 0xff, version & 0xff);
printf(" name: %s\n", buf);
//+++++ -------check if it's USB_Keyboard ---------
if(strstr(buf,"USB Keyboard") == 0)
USB_KEYBOARD=true;
//------------------------------------------+++end
printf(" features:");
for (j = 0; j < EV_MAX; j++) {
if (test_bit(j)) {
const char *type = "unknown";
switch(j) {
case EV_KEY: type = "keys/buttons"; break;
case EV_REL: type = "relative"; break;
case EV_ABS: type = "absolute"; break;
case EV_MSC: type = "reserved"; break;
case EV_LED: type = "leds"; break;
case EV_SND: type = "sound"; break;
case EV_REP: type = "repeat";
//+++++ -------check if it has feature 'repeat' ---------
FEATURE_REPEAT=true;
evnum_kbd=i;
//------------------------------------------+++end
break;
case EV_FF: type = "feedback"; break;
}
printf(" %s", type);
}
}
printf("\n");
close(fd);
}
}
//+++++ ------- if it's USB keyboard input interface ---------
// if (argc > 1) {
// sprintf(name, "/dev/input/event%d", atoi(argv[1]));
if ( USB_KEYBOARD && FEATURE_REPEAT ){
sprintf(name, "/dev/input/event%d", evnum_kbd);
//--------------------------------------------------------+++end
if ((fd = open(name, O_RDWR, 0)) >= 0) {
printf("%s: open, fd = %d\n", name, fd);
for (i = 0; i < LED_MAX; i++) {
event.time.tv_sec = time(0);
event.time.tv_usec = 0;
event.type = EV_LED;
event.code = i;
event.value = 0;
write(fd, &event, sizeof(event));
}
while ((rc = read(fd, &event, sizeof(event))) > 0) {
printf("%-24.24s.%06lu type 0x%04x; code 0x%04x;"
" value 0x%08x; ",
ctime(&event.time.tv_sec),
event.time.tv_usec,
event.type, event.code, event.value);
switch (event.type) {
case EV_KEY:
if (event.code > BTN_MISC) { //----is Button
printf("Button %d %s",
event.code & 0xff,
event.value ? "press" : "release");
} else { //----- is Key
//+++++ key to contrl mplayer----------------------------
if( (event.code & 0xff) == KEY_F1 && event.value==1 )//left key press
{
printf("--key F1--");
system("killall mplayer");
system("screen -dmS USB_RADIO /mplayer/usb_playlist");
}
else if( (event.code & 0xff) == KEY_F2 && event.value==1 )//right key press
{
printf("--key F2--");
system("killall mplayer");
system("screen -dmS USB_RADIO /mplayer/usb_playxmlist");
}
else if( (event.code & 0xff) == KEY_F3 && event.value==1 )//middle key press
{
printf("--key F3--");
system("killall mplayer");
system("screen -dmS USB_RADIO /mplayer/playB.sh");
}
else if( (event.code & 0xff) == KEY_F4 && event.value==1 )//middle key press
{
printf("--key F4--");
system("killall mplayer");
system("screen -dmS USB_RADIO /mplayer/playF.sh");
}
else if( (event.code & 0xff) == KEY_F5 && event.value==1 )//middle key press
{
printf("--key F5--");
system("killall mplayer");
system("screen -dmS USB_MP3 /mplayer/play_mp3list.sh");
}
//-------------------- control mplayer --------------------
else if( (event.code & 0xff) == KEY_LEFT_ARROW && event.value==1 )// up arrow press
{
system("mprev");
}
else if( (event.code & 0xff) == KEY_RIGHT_ARROW && event.value==1 )// up arrow press
{
system("mnext");
}
else if( (event.code & 0xff) == KEY_UP_ARROW && event.value==1 )// up arrow press
{
if(volume_val<125){
volume_val+=4;
sprintf(strCMD,"amixer -c 1 set Speaker %d%%",volume_val);
system(strCMD);
}
}
else if( (event.code & 0xff) == KEY_DOWN_ARROW && event.value==1 )// down arrow press
{
if(volume_val>5){
volume_val-=4;
sprintf(strCMD,"amixer -c 1 set Speaker %d%%",volume_val);
system(strCMD);
}
}
//------------------------------------------------------+++end
printf("Key %d (0x%x) %s",
event.code & 0xff,
event.code & 0xff,
event.value ? "press" : "release");
}
break;
case EV_REL:
switch (event.code) {
case REL_X: tmp = "X"; break;
case REL_Y: tmp = "Y"; break;
case REL_HWHEEL:
tmp = "HWHEEL";
break;
case REL_DIAL: tmp = "DIAL"; break;
case REL_WHEEL:
tmp = "WHEEL";
break;
case REL_MISC: tmp = "MISC"; break;
default: tmp = "UNKNOWN"; break;
}
printf("Relative %s %d", tmp, event.value);
break;
case EV_ABS:
switch (event.code) {
case ABS_X: tmp = "X"; break;
case ABS_Y: tmp = "Y"; break;
case ABS_Z: tmp = "Z"; break;
case ABS_RX: tmp = "RX"; break;
case ABS_RY: tmp = "RY"; break;
case ABS_RZ: tmp = "RZ"; break;
case ABS_THROTTLE: tmp = "THROTTLE"; break;
case ABS_RUDDER: tmp = "RUDDER"; break;
case ABS_WHEEL: tmp = "WHEEL"; break;
case ABS_GAS: tmp = "GAS"; break;
case ABS_BRAKE: tmp = "BRAKE"; break;
case ABS_HAT0X: tmp = "HAT0X"; break;
case ABS_HAT0Y: tmp = "HAT0Y"; break;
case ABS_HAT1X: tmp = "HAT1X"; break;
case ABS_HAT1Y: tmp = "HAT1Y"; break;
case ABS_HAT2X: tmp = "HAT2X"; break;
case ABS_HAT2Y: tmp = "HAT2Y"; break;
case ABS_HAT3X: tmp = "HAT3X"; break;
case ABS_HAT3Y: tmp = "HAT3Y"; break;
case ABS_PRESSURE: tmp = "PRESSURE"; break;
case ABS_DISTANCE: tmp = "DISTANCE"; break;
case ABS_TILT_X: tmp = "TILT_X"; break;
case ABS_TILT_Y: tmp = "TILT_Y"; break;
case ABS_MISC: tmp = "MISC"; break;
default: tmp = "UNKNOWN"; break;
}
printf("Absolute %s %d", tmp, event.value);
break;
case EV_MSC: printf("Misc"); break;
case EV_LED: printf("Led"); break;
case EV_SND: printf("Snd"); break;
case EV_REP: printf("Rep"); break;
case EV_FF: printf("FF"); break;
break;
}
printf("\n");
}
printf("rc = %d, (%s)\n", rc, strerror(errno));
close(fd);
}
}
return 0;
}
1
https://gitee.com/qingsonggege/openwrt_mt7688_ctest.git
git@gitee.com:qingsonggege/openwrt_mt7688_ctest.git
qingsonggege
openwrt_mt7688_ctest
openwrt_mt7688_ctest
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891