#pico-mp3
1 messages · Page 1 of 1 (latest)
For a Pico MP3??
A mobile MP3 player with I2S DAC, battery, LCD and microSD.
Very cool
I am going to try to bit-bang a I2S signal, GP26 to WSEL, GP27 to BCLK, GP28 to DIN.
is that possible?
"""
CircuitPython I2S MP3 playback example.
Plays a single MP3 once.
"""
import board
import audiomp3
import audiobusio
audio = audiobusio.I2SOut(board.GP0, board.GP1, board.GP2)
mp3 = audiomp3.MP3Decoder(open("slow.mp3", "rb"))
audio.play(mp3)
while audio.playing:
pass
print("Done playing!")
Taken from https://learn.adafruit.com/mp3-playback-rp2040/pico-i2s-mp3
Decided to perfboard the design so I can build it in a shorter amount of time. Good thing this does not require differential signaling.
Could I connect the output of the PowerBoost to the VSYS?
Is there any possibility to change the playback volume? Like *0.8 for 80% "loudness"
(I'm using the max98357 and a RP2040 together with a SD-Card Reader to stream the mp3-files directly - This works fine 🙂