Skip to content

Commit e692352

Browse files
committed
Fixed error in comment
1 parent 2c3058b commit e692352

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/Robot_Control/Melody.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ void RobotControl::playMelody(char* script){
4040
case 'C': playNote(202, time, modifier); break; // Play a C#
4141
case 'd': playNote(190, time, modifier); break; // Play a D
4242
case 'D': playNote(180, time, modifier); break; // Play a D#
43-
case 'e': playNote(170, time, modifier); break; // Play an F
43+
case 'e': playNote(170, time, modifier); break; // Play an E
4444
case 'f': playNote(160, time, modifier); break; // Play an F
4545
case 'F': playNote(151, time, modifier); break; // Play an F#
4646
case 'g': playNote(143, time, modifier); break; // Play a G
@@ -97,4 +97,4 @@ void RobotControl::playFile(char* filename){
9797

9898
void RobotControl::stopPlayFile(){
9999
melody.close();
100-
}
100+
}

0 commit comments

Comments
 (0)