fix wav file name to match wav included in bundle

This commit is contained in:
Liz 2025-05-28 15:52:22 -04:00
parent 05c57a9690
commit 4445aa72a2

View file

@ -11,7 +11,7 @@ LOOP = False # Update to True loop WAV playback. False plays once.
audio = audiobusio.I2SOut(board.A2, board.A1, board.A0)
with open("chikken.wav", "rb") as wave_file:
with open("booploop.wav", "rb") as wave_file:
wav = audiocore.WaveFile(wave_file)
print("Playing wav file!")