Skip to content

Commit b94d8a9

Browse files
authored
Merge pull request #3043 from adafruit/fix_wav_name
fix wav file name to match wav included in bundle
2 parents 05c57a9 + 4445aa7 commit b94d8a9

File tree

1 file changed

+1
-1
lines changed
  • Adafruit_I2S_BFF/CircuitPython/WAV

1 file changed

+1
-1
lines changed

Adafruit_I2S_BFF/CircuitPython/WAV/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
audio = audiobusio.I2SOut(board.A2, board.A1, board.A0)
1313

14-
with open("chikken.wav", "rb") as wave_file:
14+
with open("booploop.wav", "rb") as wave_file:
1515
wav = audiocore.WaveFile(wave_file)
1616

1717
print("Playing wav file!")

0 commit comments

Comments
 (0)