From a6d1ed86e585b2ecbb77edac541f2e7d34bd0c64 Mon Sep 17 00:00:00 2001 From: Aleph90 <108907830+Aleph90@users.noreply.github.com> Date: Thu, 7 Jul 2022 21:17:40 -0400 Subject: [PATCH] Update Github_Tutorial.ino Fixed the variable type for myValue --- Github_Tutorial.ino | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Github_Tutorial.ino b/Github_Tutorial.ino index 80143fc..e99c210 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: "); @@ -29,4 +29,3 @@ void loop() delay(250); } -