adafruit / Adafruit_Learning_System_Guides

Programs and scripts to display "inline" in Adafruit Learning System guides
MIT License
997 stars 768 forks source link

Soundboard Speaker I2S fix #2860

Closed mikeysklar closed 2 months ago

mikeysklar commented 2 months ago

The Soundboard Speaker for Bikes & Scooters has a discrepancy between the Circuit Diagram and the Code.

This small code.py change from:

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

to:

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

swaps the bit clock and word select pins so the Circuit Diagram is correct.

This came up in a lengthy forum issue and resolved the problem.