|
使用STC89C52來實現
播放揮著翅膀的女孩和同一首歌還有兩只蝴蝶
其中包含兩個.h和一個.c文件
.c內容如下
兩個.h分別是SoundPlay函數,以及歌曲16進制數組
- #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);
- }
- }
復制代碼
|
-
-
音樂播放器.rar
2018-1-8 09:48 上傳
點擊文件名下載附件
下載積分: 黑幣 -5
32.91 KB, 下載次數: 57, 下載積分: 黑幣 -5
|