From 3a42838a3036a69cc471ba3c126652e6a5af034c Mon Sep 17 00:00:00 2001 From: James Date: Fri, 10 Jun 2022 12:45:37 -0600 Subject: [PATCH] Corrected byte to int The original code has a bug, analogRead returns an int. This change corrects the variable mismatch. --- Github_Tutorial.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Github_Tutorial.ino b/Github_Tutorial.ino index 80143fc..2307fbe 100644 --- a/Github_Tutorial.ino +++ b/Github_Tutorial.ino @@ -21,7 +21,7 @@ void setup() void loop() { - byte myValue = 0; + int myValue = 0; myValue = analogRead(A0); Serial.print("The value is: ");