#include <SoftwareSerial.h>
SoftwareSerial MP3(7,8); // Rx , Tx
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
MP3.begin(9600);
Serial.println(" ") // Open Wokwi serial console…
MP3.println(" ")
}
void loop() {
// put your main code here, to run repeatedly:
}