Skip to content

Commit 67e5863

Browse files
Cosmatic changes
renamed myValue to adcValue for better readability. (LoL, just testing git pull)
1 parent 5b21f89 commit 67e5863

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Github_Tutorial.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ void setup()
2121

2222
void loop()
2323
{
24-
byte myValue = 0;
25-
myValue = analogRead(A0);
24+
byte adcValue = 0;
25+
adcValue = analogRead(A0);
2626

27-
Serial.print("The value is: ");
28-
Serial.println(myValue);
27+
Serial.print("The ADC value is: ");
28+
Serial.println(adcValue);
2929

3030
delay(250);
3131
}

0 commit comments

Comments
 (0)