diff --git a/Github_Tutorial.ino b/Github_Tutorial.ino index 80143fc..4732f9d 100644 --- a/Github_Tutorial.ino +++ b/Github_Tutorial.ino @@ -10,7 +10,7 @@ If we have an analog sensor such as a trimpot or flex sensor on A0, this code would attempt to read it and output it to the terminal at 9600bps. */ - +//fake comment void setup() { Serial.begin(9600); @@ -21,7 +21,7 @@ void setup() void loop() { - byte myValue = 0; + int myValue = 0; myValue = analogRead(A0); Serial.print("The value is: ");