We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c3058b commit e692352Copy full SHA for e692352
libraries/Robot_Control/Melody.cpp
@@ -40,7 +40,7 @@ void RobotControl::playMelody(char* script){
40
case 'C': playNote(202, time, modifier); break; // Play a C#
41
case 'd': playNote(190, time, modifier); break; // Play a D
42
case 'D': playNote(180, time, modifier); break; // Play a D#
43
- case 'e': playNote(170, time, modifier); break; // Play an F
+ case 'e': playNote(170, time, modifier); break; // Play an E
44
case 'f': playNote(160, time, modifier); break; // Play an F
45
case 'F': playNote(151, time, modifier); break; // Play an F#
46
case 'g': playNote(143, time, modifier); break; // Play a G
@@ -97,4 +97,4 @@ void RobotControl::playFile(char* filename){
97
98
void RobotControl::stopPlayFile(){
99
melody.close();
100
-}
+}
0 commit comments