Question.6
What will be printed on the Serial Monitor?
void setup() { Serial.begin(9600); } void loop() { int sensorValue = analogRead(A0); Serial.println(sensorValue); while(1); }
Select Answer
0
355
668
166
88