首頁 > 評(píng)測 > 讓音樂播放更簡單——Adafruit Music Maker FeatherWing和Audio FX Sound Board評(píng)測
讓音樂播放更簡單——Adafruit Music Maker FeatherWing和Audio FX Sound Board評(píng)測
- [導(dǎo)讀]
- 本文介紹的兩款模塊都很小巧,但功能強(qiáng)大,一款是高集成度的OGG播放器方案,另一款是大家都熟悉MP3解碼方案。此次評(píng)測的是Adafruit的兩塊板子:Audio FX Sound Board & Music Maker FeatherWing w/Amp
單個(gè)音符播放和停止:
def note_on( ser,key,chan ):
realkey = (key&0x7F)+40
print("key on: %u "% realkey )
midiNoteOn(ser,chan, realkey, 127);
def note_off( ser,key,chan ):
realkey = (key&0x7F)+40
print("key off: %u "% realkey )
midiNoteOff(ser,chan, realkey, 127);
def note_all_off( ser ):
print("key off" )
midiNoteAllOff(ser,0)
播放樂譜的函數(shù)
def play_tone( ser,tone ):
name = input("Push Enter to play!")
print("Song Start")
score_idx = 0
s = 0
sleeptime0 = 0
sleeptime1 = 0
sleeptime = 0
tickcount = 0
chan = 0
while score_idx < len(tone):
sleeptime0 = (tone[score_idx]+tone[score_idx+1]*256)*8/1000
sleeptime = sleeptime0-sleeptime1
sleeptime1 = sleeptime0
print("sleep: %5.2f"%sleeptime)
time.sleep(sleeptime)
note_all_off(ser)
score_idx = score_idx+2
always = 1
while always == 1:
s = tone[score_idx]
score_idx = score_idx+1
if s== EoS:
print("Song End")
return
else:
note_on(ser,s,chan)
if (s&en)!=0:
if tickcount<7:
tickcount=tickcount+1;
else:
tickcount = 0
if chan==0:
chan=1
else:
chan = 0
break;
測試程序
ser = vs1053_midi.vs1053_midi_setup("com5")
#vs1053_midi.test_play_loop(ser,5)
vs1053_midi.play_tone(ser,vs1053_midi.tone)
程序運(yùn)行如下:
-
- 本文系21ic原創(chuàng),未經(jīng)許可禁止轉(zhuǎn)載!
網(wǎng)友評(píng)論
- 聯(lián)系人:巧克力娃娃
- 郵箱:board@21ic.com
- 我要投稿
-
歡迎入駐,開放投稿
- NRF52810藍(lán)牙數(shù)字耳機(jī)找人定制
預(yù)算:¥30005天前
- 125KW模塊式PCS軟硬件外包開發(fā)
預(yù)算:¥1100000015小時(shí)前
- 12V汽車啟動(dòng)電源項(xiàng)目BMS設(shè)計(jì)
預(yù)算:¥50000023小時(shí)前
- 數(shù)據(jù)可視化軟件 開發(fā)
預(yù)算:¥5000023小時(shí)前
- PLC項(xiàng)目調(diào)試修改
預(yù)算:¥100001天前
- 起動(dòng)電機(jī)控制器開發(fā)
預(yù)算:¥1100001天前