From 7a6528fcff9346082a6cb0b1fd3ad83bf1a10b8c Mon Sep 17 00:00:00 2001 From: Isabelle Monroe Date: Thu, 4 Aug 2016 22:44:45 -0500 Subject: [PATCH] variable type myValue needed to be an int to function --- 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: ");