I decided to make an automaton music box for this assignment. I never expected it could be so much work. Of all the projects this semester, I think I learned the most doing this one. In the process I accidentally fried 2 arduinos and a good handful of other electronics. While it was frustrating at the time, the other projects were much easier thanks to the knowledge I gained.
My friend Jackson made the 3 songs used after I gave him some small prompts, I was happy to get to include a piece of him in this odd little project.
The initial idea was a barber shop that caught on fire, not sure how well that was reflected but I was happy with the mood of the finished piece.
Electronics and Structure:
Some of the fabrication:
Some early sketches and plans:
Electronics:
arduino uno, 7408 quad AND gate, 7404 NOT gate, L293D motor driver, DFPlayer mini, 2 hobby gear motors, 1 continuous rotation servo, micro sd card, micro sd card reader/writer, 3 pushbuttons, 2 potentiometers, speakers, neo pixel ring, 4 yellow LEDs, 8 red LEDs, wires, resistor, breadboard, 5v power source
Serial.println(F("Initializing DFPlayer ... (May take 3~5 seconds)"));
if(!myDFPlayer.begin(mySoftwareSerial)){ //Use softwareSerial to communicate with mp3.
Serial.println(F("Unable to begin:"));
Serial.println(F("1.Please recheck the connection!"));
Serial.println(F("2.Please insert the SD card!"));
while(true);
}
Serial.println(F("DFPlayer Mini online."));
myDFPlayer.volume(30); //Set volume value. From 0 to 30
}
voidloop()
{
if(digitalRead(7) == HIGH){
if(counter == 1){
myDFPlayer.play(3);
}elseif(counter == 2){
myDFPlayer.play(1);
}elseif(counter == 3){
myDFPlayer.play(2);
}else{
myDFPlayer.stop();
}
counter = counter + 1;
if(counter == 5){
counter = 1;
}
delay(200);
}
if(myDFPlayer.available()){
printDetail(myDFPlayer.readType(), myDFPlayer.read()); //Print the detail message from DFPlayer to handle different errors and states.
}
}
voidprintDetail(uint8_t type, int value){
switch(type){
case TimeOut:
Serial.println(F("Time Out!"));
break;
case WrongStack:
Serial.println(F("Stack Wrong!"));
break;
case DFPlayerCardInserted:
Serial.println(F("Card Inserted!"));
break;
case DFPlayerCardRemoved:
Serial.println(F("Card Removed!"));
break;
case DFPlayerCardOnline:
Serial.println(F("Card Online!"));
break;
case DFPlayerPlayFinished:
Serial.print(F("Number:"));
Serial.print(value);
Serial.println(F(" Play Finished!"));
break;
case DFPlayerError:
Serial.print(F("DFPlayerError:"));
switch(value){
case Busy:
Serial.println(F("Card not found"));
break;
case Sleeping:
Serial.println(F("Sleeping"));
break;
case SerialWrongStack:
Serial.println(F("Get Wrong Stack"));
break;
case CheckSumNotMatch:
Serial.println(F("Check Sum Not Match"));
break;
case FileIndexOut:
Serial.println(F("File Index Out of Bound"));
break;
case FileMismatch:
Serial.println(F("Cannot Find File"));
break;
case Advertise:
Serial.println(F("In Advertise"));
break;
default:
break;
}
break;
default:
break;
}
}
/***************************************************
DFPlayer - A Mini MP3 Player For Arduino
<https://www.dfrobot.com/index.php?route=product/product&product_id=1121>
***************************************************
This example shows the basic function of library for DFPlayer.
Created 2016-12-07
By [Angelo qiao](Angelo.qiao@dfrobot.com)
GNU Lesser General Public License.
See <http://www.gnu.org/licenses/> for details.
All above must be included in any redistribution
****************************************************/
/***********Notice and Trouble shooting***************
1.Connection and Diagram can be found here
<https://www.dfrobot.com/wiki/index.php/DFPlayer_Mini_SKU:DFR0299#Connection_Diagram>
2.This code is tested on Arduino Uno, Leonardo, Mega boards.
****************************************************/
#include "Arduino.h"
#include "SoftwareSerial.h"
#include "DFRobotDFPlayerMini.h"
SoftwareSerial mySoftwareSerial(10, 11); // RX, TX
DFRobotDFPlayerMini myDFPlayer;
void printDetail(uint8_t type, int value);
int counter = 1;
void setup()
{
pinMode(7, INPUT);
mySoftwareSerial.begin(9600);
Serial.begin(115200);
Serial.println();
Serial.println(F("DFRobot DFPlayer Mini Demo"));
Serial.println(F("Initializing DFPlayer ... (May take 3~5 seconds)"));
if (!myDFPlayer.begin(mySoftwareSerial)) { //Use softwareSerial to communicate with mp3.
Serial.println(F("Unable to begin:"));
Serial.println(F("1.Please recheck the connection!"));
Serial.println(F("2.Please insert the SD card!"));
while(true);
}
Serial.println(F("DFPlayer Mini online."));
myDFPlayer.volume(30); //Set volume value. From 0 to 30
}
void loop()
{
if (digitalRead(7) == HIGH) {
if (counter == 1) {
myDFPlayer.play(3);
} else if (counter == 2) {
myDFPlayer.play(1);
} else if (counter == 3) {
myDFPlayer.play(2);
} else {
myDFPlayer.stop();
}
counter = counter + 1;
if (counter == 5) {
counter = 1;
}
delay(200);
}
if (myDFPlayer.available()) {
printDetail(myDFPlayer.readType(), myDFPlayer.read()); //Print the detail message from DFPlayer to handle different errors and states.
}
}
void printDetail(uint8_t type, int value){
switch (type) {
case TimeOut:
Serial.println(F("Time Out!"));
break;
case WrongStack:
Serial.println(F("Stack Wrong!"));
break;
case DFPlayerCardInserted:
Serial.println(F("Card Inserted!"));
break;
case DFPlayerCardRemoved:
Serial.println(F("Card Removed!"));
break;
case DFPlayerCardOnline:
Serial.println(F("Card Online!"));
break;
case DFPlayerPlayFinished:
Serial.print(F("Number:"));
Serial.print(value);
Serial.println(F(" Play Finished!"));
break;
case DFPlayerError:
Serial.print(F("DFPlayerError:"));
switch (value) {
case Busy:
Serial.println(F("Card not found"));
break;
case Sleeping:
Serial.println(F("Sleeping"));
break;
case SerialWrongStack:
Serial.println(F("Get Wrong Stack"));
break;
case CheckSumNotMatch:
Serial.println(F("Check Sum Not Match"));
break;
case FileIndexOut:
Serial.println(F("File Index Out of Bound"));
break;
case FileMismatch:
Serial.println(F("Cannot Find File"));
break;
case Advertise:
Serial.println(F("In Advertise"));
break;
default:
break;
}
break;
default:
break;
}
}
/***************************************************
DFPlayer - A Mini MP3 Player For Arduino
<https://www.dfrobot.com/index.php?route=product/product&product_id=1121>
***************************************************
This example shows the basic function of library for DFPlayer.
Created 2016-12-07
By [Angelo qiao](Angelo.qiao@dfrobot.com)
GNU Lesser General Public License.
See <http://www.gnu.org/licenses/> for details.
All above must be included in any redistribution
****************************************************//***********Notice and Trouble shooting***************
1.Connection and Diagram can be found here
<https://www.dfrobot.com/wiki/index.php/DFPlayer_Mini_SKU:DFR0299#Connection_Diagram>
2.This code is tested on Arduino Uno, Leonardo, Mega boards.
****************************************************/#include"Arduino.h"#include"SoftwareSerial.h"#include"DFRobotDFPlayerMini.h"SoftwareSerial mySoftwareSerial(10,11);// RX, TXDFRobotDFPlayerMini myDFPlayer;void printDetail(uint8_t type,intvalue);int counter =1;void setup(){
pinMode(7, INPUT);
mySoftwareSerial.begin(9600);Serial.begin(115200);Serial.println();Serial.println(F("DFRobot DFPlayer Mini Demo"));Serial.println(F("Initializing DFPlayer ... (May take 3~5 seconds)"));if(!myDFPlayer.begin(mySoftwareSerial)){//Use softwareSerial to communicate with mp3.Serial.println(F("Unable to begin:"));Serial.println(F("1.Please recheck the connection!"));Serial.println(F("2.Please insert the SD card!"));while(true);}Serial.println(F("DFPlayer Mini online."));
myDFPlayer.volume(30);//Set volume value. From 0 to 30}void loop(){if(digitalRead(7)== HIGH){if(counter ==1){
myDFPlayer.play(3);}elseif(counter ==2){
myDFPlayer.play(1);}elseif(counter ==3){
myDFPlayer.play(2);}else{
myDFPlayer.stop();}
counter = counter +1;if(counter ==5){
counter =1;}
delay(200);}if(myDFPlayer.available()){
printDetail(myDFPlayer.readType(), myDFPlayer.read());//Print the detail message from DFPlayer to handle different errors and states.}}void printDetail(uint8_t type,intvalue){switch(type){caseTimeOut:Serial.println(F("Time Out!"));break;caseWrongStack:Serial.println(F("Stack Wrong!"));break;caseDFPlayerCardInserted:Serial.println(F("Card Inserted!"));break;caseDFPlayerCardRemoved:Serial.println(F("Card Removed!"));break;caseDFPlayerCardOnline:Serial.println(F("Card Online!"));break;caseDFPlayerPlayFinished:Serial.print(F("Number:"));Serial.print(value);Serial.println(F(" Play Finished!"));break;caseDFPlayerError:Serial.print(F("DFPlayerError:"));switch(value){caseBusy:Serial.println(F("Card not found"));break;caseSleeping:Serial.println(F("Sleeping"));break;caseSerialWrongStack:Serial.println(F("Get Wrong Stack"));break;caseCheckSumNotMatch:Serial.println(F("Check Sum Not Match"));break;caseFileIndexOut:Serial.println(F("File Index Out of Bound"));break;caseFileMismatch:Serial.println(F("Cannot Find File"));break;caseAdvertise:Serial.println(F("In Advertise"));break;default:break;}break;default:break;}}
Comments are closed.