From 67e58639792e39bda1ccbeb0707495c227766552 Mon Sep 17 00:00:00 2001 From: Ashok Sharma Date: Mon, 12 Sep 2022 11:45:23 +0530 Subject: [PATCH] Cosmatic changes renamed myValue to adcValue for better readability. (LoL, just testing git pull) --- Github_Tutorial.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Github_Tutorial.ino b/Github_Tutorial.ino index 80143fc..3b8c238 100644 --- a/Github_Tutorial.ino +++ b/Github_Tutorial.ino @@ -21,11 +21,11 @@ void setup() void loop() { - byte myValue = 0; - myValue = analogRead(A0); + byte adcValue = 0; + adcValue = analogRead(A0); - Serial.print("The value is: "); - Serial.println(myValue); + Serial.print("The ADC value is: "); + Serial.println(adcValue); delay(250); }