之前发过一次4530的折腾贴,原帖
http://bbs.mydigit.cn/read.php?tid=689414再借用一张原来的图片
这次内部没变化,主要增加了一个
红外遥控,来遥控网络收音机。
淘宝9.9买的,做工对得起价格,但是遥控距离最多3米
自己水平有限,DIY基本都是攒别人的成果。
实现的功能,遥控开关mplayer,播放相应电台或者音乐。支持音量调整、换台、静音、下一首。效果还不错。
简单教程:
1、遥控器支持,openwrt需要安装:kmod-usb-hid (kmod-hid kmod-input-core kmod-input-evdev),udev, lirc, lircdaemonadd, lirctools
提示:lirc的源码需要修改一个地方,这个必须修改了再编译,否则插入接收器不会识别为input设备(照猫画虎)
原帖:
Before building we should add thetype of supported driver for LIRC by ourselves. On default LIRC is buildingwith the support of the driver mceusb, but in our case we should use the driverdevinput. It is easy to do this. Let’sopen the file OpenWtr/feeds/packages/utils/lirc/Makefile. And search for thesection CONFIGURE_ARGS and in the line --with-driver="mceusb" wechange for --with-driver="devinput".意思就是把/feeds/packages/utils/lirc/Makefile里,CONFIGURE_AGES里的-with-driver="mceusb",改为with-driver="devinput"。原帖地址:http://h-wrt.com/en/doc/ik正常的话,插入遥控器就可以正常识别了,使用命令:cat /dev/input/event0 | hexdump然后按遥控器,能看到一堆数字字母,遥控器就OK了。提示:event0也可能是event1,event0没输出就换event12、遥控器OK后,借用openwrt中文论坛坛友发过的一个软件包,就可以实现遥控路由器放收音机了。原帖地址:http://www.openwrt.org.cn/bbs/forum.php?mod=viewthread&tid=721这个帖子,原贴主只发了一个附件,附件里的配置文件有相关说明,跟帖中也有一些有用信息。有想折腾,对原帖有疑问的,跟帖,我回复。