Skip to content

Commit 9e103fc

Browse files
authored
Merge pull request #4 from srobo/backport
Backport spellings used in the docs version
2 parents ed03aa2 + 440cf13 commit 9e103fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/src.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ void command_read() {
3535
}
3636
}
3737

38-
void command_analogue_read() {
38+
void command_analog_read() {
3939
int pin = read_pin();
4040
int value = analogRead(pin);
4141
Serial.print(value);
@@ -85,7 +85,7 @@ void loop() {
8585
// Do something different based on what we got:
8686
switch (selected_command) {
8787
case 'a':
88-
command_analogue_read();
88+
command_analog_read();
8989
break;
9090
case 'r':
9191
command_read();

0 commit comments

Comments
 (0)