祝你生日快乐21音符简谱c语言代码,C语言程序设计:生日快乐歌.doc

#include

#include

#define uchar unsigned char

#define uint unsigned int

sbit BEEP=P1^5;

//生日快乐歌的音符频率表,不同频率由不同的延时来决定

uchar code SONG_TONE[]={212,212,190,212,159,169,212,212,190,212,142,159,

212,212,106,126,159,169,190,119,119,126,159,142,159,0};

//生日快乐歌节拍表,节拍决定每个音符的演奏长短

uchar code SONG_LONG[]={9,3,12,12,12,24,9,3,12,12,12,24,

9,3,12,12,12,12,12,9,3,12,12,12,24,0};

void delayms(uint xms)/ / 延时程序

{

uint i,j;

for(i=xms;i>0;i--)

for(j=110;j>0;j--);

}

void xg0()// 效果 0

{

uint a,b;

a=0xee;

delayms(1000);//延时 1 秒

for(b=4;b>0;b--)// 点亮次数

{ P0=a;//灯 1 和 5 亮

delayms(1000);

a=_crol_(a,1);// 循环左移 1 位

}

}

void xg1()// 效果 1

{

你可能感兴趣的:(祝你生日快乐21音符简谱c语言代码,C语言程序设计:生日快乐歌.doc)