From f9b46d5e42b6666a00338fbd01b2c3e044ea3b1f Mon Sep 17 00:00:00 2001 From: afua-ansah Date: Sun, 25 Jul 2021 18:10:19 -0400 Subject: [PATCH] Update Github_Tutorial.ino changed byte declaration to int --- 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); } -