|
发表于 2013-4-1 12:56:05
|
显示全部楼层
按键脚本我设置好了,三个键都有用,RST是暂停 其余是上一曲和下一曲,按键时间改短了,按一下就可以。
config 'button'
option 'button' 'BTN_3'
option 'action' 'released'
option 'handler' 'firstboot && reboot'
option 'min' '8'
option 'max' '15'
config 'button'
option 'button' 'BTN_0'
option 'action' 'released'
option 'handler' 'echo pause > /tmp/fifofile'
option 'min' '0'
option 'max' '1'
config 'button'
option 'button' 'BTN_1'
option 'action' 'released'
option 'handler' 'echo pt_step 1 > /tmp/fifofile'
option 'min' '0'
option 'max' '1'
config 'button'
option 'button' 'BTN_2'
option 'action' 'released'
option 'handler' 'echo pt_step -1 > /tmp/fifofile'
option 'min' '0'
option 'max' '1' |
|