From 9b93297cd30c4fd76a6961b2d4f4631c3174f21a Mon Sep 17 00:00:00 2001 From: Ramp Date: Mon, 20 Mar 2023 16:04:58 +0530 Subject: [PATCH] Update Github_Tutorial.ino Changed byte datatype to int --- 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: ");