Skip to content

Commit 78d4618

Browse files
authored
Swap I2SOut pins for audio output
Call I2SOut with correct pin order
1 parent d758266 commit 78d4618

File tree

1 file changed

+1
-1
lines changed
  • Feather_RP2350_Examples/CircuitPython_I2S_Wav

1 file changed

+1
-1
lines changed

Feather_RP2350_Examples/CircuitPython_I2S_Wav/code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import board
99
import audiobusio
1010

11-
audio = audiobusio.I2SOut(board.D6, board.D5, board.D9)
11+
audio = audiobusio.I2SOut(board.D5, board.D6, board.D9)
1212

1313
with open("StreetChicken.wav", "rb") as wave_file:
1414
wav = audiocore.WaveFile(wave_file)

0 commit comments

Comments
 (0)