From ec0430d2633814d78ca3bf9bc2f6fdca59b871f4 Mon Sep 17 00:00:00 2001 From: John Viktor Date: Thu, 9 May 2019 11:07:11 -0400 Subject: [PATCH] Update Github_Tutorial.ino changed byte to int on myValue --- 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: ");