Skip to content

Commit

Permalink
Merge pull request #2860 from adafruit/soundboard-i2s-fix
Browse files Browse the repository at this point in the history
Soundboard Speaker I2S fix
  • Loading branch information
mikeysklar authored Aug 4, 2024
2 parents 15dbd2f + d062c10 commit 1831ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Soundboard_Scooter_Bike/code.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

km = keypad.Keys( KEY_PINS, value_when_pressed=False, pull=True)

audio = audiobusio.I2SOut(board.RX, board.TX, board.D9)
audio = audiobusio.I2SOut(board.TX, board.RX, board.D9)

mixer = audiomixer.Mixer(voice_count=len(wav_files), sample_rate=22050, channel_count=1,
bits_per_sample=16, samples_signed=True)
Expand Down

0 comments on commit 1831ab7

Please sign in to comment.