|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区
您需要 登录 才可以下载或查看,没有账号?立即注册
×
[sell=2,currency]#include "reg52.h" //此文件中定义了单片机的一些特殊功能寄存器
#include "SoundPlay.h"
#include"music.h"
typedef unsigned int u16; //对数据类型进行声明定义
typedef unsigned char u8;
void Delay1ms(unsigned int count)
{
unsigned int i,j;
for(i=0;i<count;i++)
for(j=0;j<120;j++);
}
void main()
{
InitialSound();
while(1)
{
Play(Music_Girl,0,3,360);
Delay1ms(500);
Play(Music_Same,0,3,360);
Delay1ms(500);
Play(Music_Two,0,3,360);
Delay1ms(500);
}
} |
|