We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ed03aa2 + 440cf13 commit 9e103fcCopy full SHA for 9e103fc
1 file changed
src/src.ino
@@ -35,7 +35,7 @@ void command_read() {
35
}
36
37
38
-void command_analogue_read() {
+void command_analog_read() {
39
int pin = read_pin();
40
int value = analogRead(pin);
41
Serial.print(value);
@@ -85,7 +85,7 @@ void loop() {
85
// Do something different based on what we got:
86
switch (selected_command) {
87
case 'a':
88
- command_analogue_read();
+ command_analog_read();
89
break;
90
case 'r':
91
command_read();
0 commit comments