From 860f34d2bd4a7420b9997c9e05a955f81f68f77c Mon Sep 17 00:00:00 2001 From: aylf24 <43865664+aylf24@users.noreply.github.com> Date: Thu, 4 Oct 2018 16:22:19 -0700 Subject: [PATCH] test change "byte" 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); } -