Raspberry Pi 整点报时

完整的音频文件及脚本: Github

参考链接:

http://blog.sina.com.cn/s/blog_6d1aef300100qta0.html

http://linuxtools-rst.readthedocs.org/zh_CN/latest/tool/crontab.html

  • 安装Mplayer
  • 下载语音文件(解压到/{home})
  • 创建脚本文件TimeAudio.sh(/usr/local/bin)
#!/bin/bash

filePath=/{home}/TimeAudio
Time=`date +%H%M`
audioFile="$filePath/$Time.mp3"
#echo $audioFile
player=/usr/bin/mplayer

$player $audioFile
  • 保存后加执行权限:
chmod +x /usr/local/bin/TimeAudio.sh
  • 加入定时计划 crontab, 运行:crontab -e 添加如下代码
0 * * * * /usr/local/bin/TimeAudio.sh

评论

还没有人评论,抢个沙发吧...

Viagle Blog

欢迎来到我的个人博客网站