【Follow me第二季第1期】创意任务三:触摸钢琴
[复制链接]
本帖最后由 nemon 于 2024-8-31 19:15 编辑
创意任务三原题要求是做“水果钢琴”——通过触摸水果弹奏音乐,并配合灯光效果。我没准备水果,只是靠触摸完成功能,所以只能叫“琴”。
没有水果,做题打折有点不好意思,所以加了个示范功能:按下按键A后,会播放“小星星”这首曲子,并点亮对应的灯。
这次我没有播放文件,而是用官方库的start_tone功能,这个库只要告诉它Hz数,就会播放对应的音调。不用的时候,执行stop_tone就可以停止。
于是代码又是很简单:
from adafruit_circuitplayground import cp
import time
HZ = ( 262,294,330,349,392,440,494)
LT = ( 6,8,9,0,1,3,5)
cp.pixels.fill( ( 0,0,0 ) )
while True:
#break
print( cp.touch_A1,cp.touch_A2,cp.touch_A3,cp.touch_A4,cp.touch_A5,cp.touch_A6 )
if cp.touch_A1:
cp.start_tone( HZ[0] )
cp.pixels[ LT[0] ]= ( 0,255,0 )
elif cp.touch_A2:
cp.start_tone( HZ[1] )
cp.pixels[ LT[1] ]= ( 0,255,0 )
elif cp.touch_A3:
cp.start_tone( HZ[2] )
cp.pixels[ LT[2] ]= ( 0,255,0 )
elif cp.touch_A4:
cp.start_tone( HZ[3] )
cp.pixels[ LT[3] ]= ( 0,255,0 )
elif cp.touch_A5:
cp.start_tone( HZ[4] )
cp.pixels[ LT[4] ]= ( 0,255,0 )
elif cp.touch_A6:
cp.start_tone( HZ[5] )
cp.pixels[ LT[5] ]= ( 0,255,0 )
else:
cp.stop_tone()
cp.pixels.fill( ( 0,0,0 ) )
time.sleep(0.3)
完成效果见视频:
|