Untitled
unknown
plain_text
8 months ago
429 B
5
Indexable
#include "SoftwareSerial.h"
#include "DFRobotDFPlayerMini.h"
SoftwareSerial mySoftwareSerial(10, 11);
DFRobotDFPlayerMini myDFPlayer;
void setup() {
mySoftwareSerial.begin(9600);
Serial.begin(115200);
if (!myDFPlayer.begin(mySoftwareSerial)) {
Serial.println("DFPlayer Mini not detected. Check connections!");
while (true);
}
myDFPlayer.volume(20);
myDFPlayer.play(1);
}
void loop() {
}Editor is loading...
Leave a Comment