Skip to content

Commit

Permalink
Merge pull request esp8266#2117 from amulya349/master
Browse files Browse the repository at this point in the history
Fixed mistake in comment
  • Loading branch information
ffissore committed Jun 7, 2014
2 parents 1918966 + e692352 commit 09d0843
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 09d0843

Please sign in to comment.