RP2040 and "Mini Digital Power Amp" #669
Replies: 1 comment
-
I'm also trying to wire up that board but to my Wemos S2 mini... I have some code that is kind of working but the sound is so loud and distorted... I know that the S2 mini has a built in 8bit DAC but I don't know how to configure the library to use it... I attached the wire up pics... And the code: `#include <Arduino.h> #if defined(ARDUINO_ARCH_RP2040) #else // To run, set your ESP8266 build to 160MHz, update the SSID info, and upload. // Enter your WiFi setup here: const char* ssid = STASSID; // Randomly picked URL AudioGeneratorMP3 *mp3; // Called when a metadata event occurs (i.e. an ID3 tag, an ICY block, etc. // Called when there's a warning or error (like a buffer underflow or decode hiccup) void setup() WiFi.disconnect(); WiFi.begin(ssid, password); // Try forever audioLogger = &Serial; } void loop() if (mp3->isRunning()) { |
Beta Was this translation helpful? Give feedback.
-
Hi!
Thanks so much for your efforts in creating & maintaining this code!
I wondered if you could tell me how to wire up a board like this one: https://a.co/d/3lAyalz to my Pico in order to use this library/code, please? I have the idea such boards can be made to work with a Pico, but I'm lost at which pins to connect to.
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions