#pico-mp3

1 messages · Page 1 of 1 (latest)

stoic widget
#

This is what I have so far

tulip fulcrum
#

For a Pico MP3??

stoic widget
#

A mobile MP3 player with I2S DAC, battery, LCD and microSD.

tulip fulcrum
#

Very cool

stoic widget
#

I am going to try to bit-bang a I2S signal, GP26 to WSEL, GP27 to BCLK, GP28 to DIN.

#

is that possible?

wraith cypress
#
"""
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

stoic widget
#

Decided to perfboard the design so I can build it in a shorter amount of time. Good thing this does not require differential signaling.

stoic widget
#

Could I connect the output of the PowerBoost to the VSYS?

blazing tree
#

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 🙂