Skip to content

Commit

Permalink
Fixed error in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
amulya349 committed Jun 7, 2014
1 parent 2c3058b commit e692352
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/Robot_Control/Melody.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void RobotControl::playMelody(char* script){
case 'C': playNote(202, time, modifier); break; // Play a C#
case 'd': playNote(190, time, modifier); break; // Play a D
case 'D': playNote(180, time, modifier); break; // Play a D#
case 'e': playNote(170, time, modifier); break; // Play an F
case 'e': playNote(170, time, modifier); break; // Play an E
case 'f': playNote(160, time, modifier); break; // Play an F
case 'F': playNote(151, time, modifier); break; // Play an F#
case 'g': playNote(143, time, modifier); break; // Play a G
Expand Down Expand Up @@ -97,4 +97,4 @@ void RobotControl::playFile(char* filename){

void RobotControl::stopPlayFile(){
melody.close();
}
}

0 comments on commit e692352

Please sign in to comment.