|
#include <IRremote.h> // sets up the IR Remote |
|
|
|
// The following integers are for the two wheel motors |
|
int RECV_PIN = 9; // receiver pin |
|
int leftForward = 2; // pin for the left wheel to go forward |
|
int leftBackward = 4; // pin for left wheel to go backward |
|
int rightForward = 12; // pin for right wheel to go forward |
|
int rightBackward = 7; // pin for right wheel to go backward |
|
|
|
// The following integers are for the RGB LED |
|
const int Red = 5; // Red led |
|
const int Green = 3; // Green led |
|
const int Blue = 6; // Blue led |
|
|
|
//The following integers are used with the piezzo buzzer |
|
const int buzzerPin = 10; |
|
const int songLength = 12; |
|
const int songLength1 = 9; |
|
char notes[] = "edcccdefggge"; // Notes is an array of text characters corresponding to the notes in the song. |
|
char notes1[] = "aaafbafba"; // Notes is an array of text characters corresponding to the notes in the song. |
|
int beats[] = {1,1.5,2,2,1,1,1,1,2,2,2,2}; // Beats is an array of values for each note and rest. A "1" represents a quarter-note, 2 a half-note, etc |
|
int beats1[] = {4,4,4,3,1.5,4,3,1.5,4}; // Beats is an array of values for each note and rest. A "1" represents a quarter-note, 2 a half-note, etc |
|
int tempo = 125; // The tempo is how fast to play the song. To make the song play faster, decrease this value. |
|
int tempo1 = 100; // The tempo is how fast to play the song. To make the song play faster, decrease this value. |
|
|
|
// The following values are the codes for the IR Remote buttons |
|
long forward = 0x10EFA05F; // up arrow |
|
long backward = 0x10EF00FF; // down arrow |
|
long left = 0x10EF10EF; // left arrow |
|
long right = 0x10EF807F; // right arrow |
|
long center = 0x10EF20DF; // center circle |
|
long A = 0x10EFF807; // "A" button |
|
long B = 0x10EF7887; // "B" button |
|
long C = 0x10EF58A7; //"C" button |
|
long power = 0x10EFD827; // Power button |
|
|
|
IRrecv irrecv(RECV_PIN); |
|
decode_results results; // decodes the values of the remote codes |
|
|
|
void setup() |
|
{ |
|
Serial.begin(9600); // begins serial port |
|
|
|
// The following "pinMode"'s set the wheel pins as outputs |
|
pinMode(leftForward, OUTPUT); |
|
pinMode(rightForward, OUTPUT); |
|
pinMode(leftBackward, OUTPUT); |
|
pinMode(rightBackward, OUTPUT); |
|
|
|
// The following "pinMode" sets the piezzo buzzer as an output |
|
pinMode(buzzerPin, OUTPUT); |
|
|
|
// The following "pinMode"'s set the RGB pins as outputs |
|
pinMode(Red, OUTPUT); |
|
pinMode(Green, OUTPUT); |
|
pinMode(Blue, OUTPUT); |
|
|
|
irrecv.enableIRIn(); // Start the receiver |
|
irrecv.blink13(true); // blink LED on P13 when IR signal is present |
|
} |
|
|
|
void loop() |
|
{ |
|
if (irrecv.decode(&results)) |
|
{ |
|
Serial.println(results.value, HEX); // the serial monitor will read the code values when a button is pressed |
|
|
|
if(results.value == power) // if the "Power" button is pressed: |
|
{ |
|
delay(100); |
|
// Both wheels stop spinning: |
|
digitalWrite(rightBackward, LOW); |
|
digitalWrite(leftBackward, LOW); |
|
digitalWrite(leftForward, LOW); |
|
digitalWrite(rightForward, LOW); |
|
|
|
// LED shuts off: |
|
digitalWrite(Red, LOW); |
|
digitalWrite(Green, LOW); |
|
digitalWrite(Blue, LOW); |
|
} |
|
if (results.value == forward) // if the up arrow button is pressed: |
|
{ |
|
delay(100); |
|
// Both wheels spin forward: |
|
digitalWrite(leftForward, HIGH); |
|
digitalWrite(rightForward, HIGH); |
|
digitalWrite(rightBackward, LOW); |
|
digitalWrite(leftBackward, LOW); |
|
|
|
// LED turns GREEN: |
|
digitalWrite(Red, LOW); |
|
digitalWrite(Green, HIGH); |
|
digitalWrite(Blue, LOW); |
|
} |
|
if (results.value == backward) // if the down arrow is pressed: |
|
{ |
|
delay(100); |
|
// Both wheels spin backward: |
|
digitalWrite(rightBackward, HIGH); |
|
digitalWrite(leftBackward, HIGH); |
|
digitalWrite(leftForward, LOW); |
|
digitalWrite(rightForward, LOW); |
|
|
|
// LED turns Red: |
|
digitalWrite(Red, HIGH); |
|
digitalWrite(Green, LOW); |
|
digitalWrite(Blue, LOW); |
|
} |
|
if (results.value == left) // if the left arrow is pressed: |
|
{ |
|
delay(100); |
|
// Left wheel spins forward: |
|
digitalWrite(leftForward, LOW); |
|
digitalWrite(leftBackward, LOW); |
|
digitalWrite(rightForward, HIGH); |
|
digitalWrite(rightBackward, LOW); |
|
|
|
// LED turns Blue: |
|
digitalWrite(Red, LOW); |
|
digitalWrite(Green, LOW); |
|
digitalWrite(Blue, HIGH); |
|
} |
|
if (results.value == right) // if the right arrow is pressed: |
|
{ |
|
delay(100); |
|
// Right wheel spins forward: |
|
digitalWrite(rightForward, LOW); |
|
digitalWrite(leftBackward, LOW); |
|
digitalWrite(leftForward, HIGH); |
|
digitalWrite(rightBackward, LOW); |
|
|
|
// LED turns Purple: |
|
digitalWrite(Red, HIGH); |
|
digitalWrite(Green, LOW); |
|
digitalWrite(Blue, HIGH); |
|
} |
|
if (results.value == center) // if the center circle button is pressed: |
|
{ |
|
delay(100); |
|
// Both wheels stop spinning: |
|
digitalWrite(rightBackward, LOW); |
|
digitalWrite(leftBackward, LOW); |
|
digitalWrite(leftForward, LOW); |
|
digitalWrite(rightForward, LOW); |
|
|
|
// LED turns White: |
|
digitalWrite(Red, HIGH); |
|
digitalWrite(Green, HIGH); |
|
digitalWrite(Blue, HIGH); |
|
} |
|
if (results.value == A) // if "A" is pressed: |
|
{ |
|
delay(100); |
|
// Both wheels stop: |
|
digitalWrite(rightBackward, LOW); |
|
digitalWrite(leftBackward, LOW); |
|
digitalWrite(leftForward, LOW); |
|
digitalWrite(rightForward, LOW); |
|
|
|
// LED turns Yellow: |
|
digitalWrite(Red, HIGH); |
|
digitalWrite(Green, HIGH); |
|
digitalWrite(Blue, LOW); |
|
|
|
playDukesofHazzard(); //This function is defined in the corresponding loop below |
|
} |
|
if (results.value == B) // if "B" is pressed: |
|
{ |
|
delay(100); |
|
// Both wheels stop: |
|
digitalWrite(rightBackward, LOW); |
|
digitalWrite(leftBackward, LOW); |
|
digitalWrite(leftForward, LOW); |
|
digitalWrite(rightForward, LOW); |
|
|
|
// LED turns Cyan: |
|
digitalWrite(Red, LOW); |
|
digitalWrite(Green, HIGH); |
|
digitalWrite(Blue, HIGH); |
|
|
|
playStarWars(); //This function is defined in the corresponding loop below |
|
} |
|
irrecv.resume(); // Receive the next value |
|
} |
|
} |
|
|
|
void playDukesofHazzard() |
|
{ |
|
int i, duration; |
|
for (i = 0; i < songLength; i++) // step through the song arrays |
|
{ |
|
duration = beats[i] * tempo; // length of note/rest in ms |
|
|
|
if (notes[i] == ' ') // is this a rest? |
|
{ |
|
delay(duration); // then pause for a moment |
|
} |
|
else // otherwise, play the note |
|
{ |
|
tone(buzzerPin, frequency(notes[i]), duration); |
|
delay(duration); // wait for tone to finish |
|
} |
|
delay(tempo/10); // brief pause between notes |
|
} |
|
} |
|
int frequency(char note) |
|
{ |
|
// This function takes a note character (a-g), and returns the |
|
// corresponding frequency in Hz for the tone() function. |
|
|
|
int i; |
|
const int numNotes = 8; // number of notes we're storing |
|
|
|
// The following arrays hold the note characters and their |
|
// corresponding frequencies. The last "C" note is uppercase |
|
// to separate it from the first lowercase "c". |
|
|
|
char names[] = { 'c', 'd', 'e', 'f', 'g', 'a', 'b', 'C' }; |
|
int frequencies[] = {262, 294, 330, 349, 392, 440, 494, 523}; |
|
|
|
// Now we'll search through the letters in the array, and if |
|
// we find it, we'll return the frequency for that note. |
|
|
|
for (i = 0; i < numNotes; i++) // Step through the notes |
|
{ |
|
if (names[i] == note) // Is this the one? |
|
{ |
|
return(frequencies[i]); // Yes! Return the frequency |
|
} |
|
} |
|
return(0); // We looked through everything and didn't find it, |
|
// but we still need to return a value, so return 0. |
|
} |
|
|
|
void playStarWars() |
|
{ |
|
int i, duration; |
|
for (i = 0; i < songLength1; i++) // step through the song arrays |
|
{ |
|
duration = beats1[i] * tempo1; // length of note/rest in ms |
|
|
|
if (notes1[i] == ' ') // is this a rest? |
|
{ |
|
delay(duration); // then pause for a moment |
|
} |
|
else // otherwise, play the note |
|
{ |
|
tone(buzzerPin, frequency(notes1[i]), duration); |
|
delay(duration); // wait for tone to finish |
|
} |
|
delay(tempo1/10); // brief pause between notes |
|
} |
|
} |
|
int frequency1(char note) |
|
{ |
|
// This function takes a note character (a-g), and returns the |
|
// corresponding frequency in Hz for the tone() function. |
|
|
|
int i; |
|
const int numNotes = 8; // number of notes we're storing |
|
|
|
// The following arrays hold the note characters and their |
|
// corresponding frequencies. The last "C" note is uppercase |
|
// to separate it from the first lowercase "c". |
|
|
|
char names[] = { 'c', 'd', 'e', 'f', 'g', 'a', 'b', 'C'}; |
|
int frequencies[] = {262, 294, 330, 349, 392, 440, 494, 523}; |
|
|
|
// Now we'll search through the letters in the array, and if |
|
// we find it, we'll return the frequency for that note. |
|
|
|
for (i = 0; i < numNotes; i++) // Step through the notes |
|
{ |
|
if (names[i] == note) // Is this the one? |
|
{ |
|
return(frequencies[i]); // Yes! Return the frequency |
|
} |
|
} |
|
return(0); // We looked through everything and didn't find it, |
|
// but we still need to return a value, so return 0. |
|
} |