1、播放MP3文件夹名()MP3名()

(1)功能:播放MP3磁盘中01文件夹内名称为01的MP3
(2)参数:01-99文件夹名称
(3)参数:01-99音频文件名称
(4)范例:播放MP3
执行程序,播放01文件夹内名为01的MP3音频文件
import rcudef task1():rcu.SetMp3Play(1,1);task1()
2、暂停播放MP3

(1)功能:中断MP3的播放
(2)范例:播放后停止
播放MP3,3秒后停止
import rcudef task1():rcu.SetMp3Play(1,1);rcu.SetWaitForTime(3)rcu.SetMp3Suspend();task1()
