void setup() { // put your setup code here, to run once: Serial.begin(9600); Serial.println("Blocking the IR Sensor should cause the input to go up significantly") } void loop() { // put your main code here, to run repeatedly: int input = analogRead(A0); Serial.println(input); } }