Question.5
What will be printed on the serial monitor?
void setup() { Serial.begin(9600); analogReference(EXTERNAL); delay(1000); } void loop() { int sensorValue = analogRead(A0); Serial.println(sensorValue); while(1); }
Select Answer
1023
1024
775
703
0