DFMiniMp3 icon indicating copy to clipboard operation
DFMiniMp3 copied to clipboard

Examples need #include <SoftwareSerial.h> if you are not useng hardware

Open bhelterline opened this issue 4 months ago • 0 comments

The examples show using HardwareSerial with commented out SoftwareSerial alternative. You should also have commented out the line to include the library since it is needed.

They should contain this:

// Some arduino boards only have one hardware serial port, so a software serial port is needed instead. // comment out the above definitions and use these //#include <SoftwareSerial.h> //SoftwareSerial secondarySerial(10, 11); // RX, TX //typedef DFMiniMp3<SoftwareSerial, Mp3Notify> DfMp3; // DfMp3 dfmp3(secondarySerial);

This is needed for all the examples

bhelterline avatar Oct 24 '25 15:10 bhelterline