From 6f1dc5ff2a0e248102fd6dc6a4532c1eaaabdb99 Mon Sep 17 00:00:00 2001 From: swilliams209 Date: Tue, 10 May 2022 13:05:17 -0400 Subject: [PATCH] Update Github_Tutorial.ino Corrected 'byte' on line 24 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); } -