void setup() { Serial.begin(115200); // <---- MUST match the value set in the serial monitor/plotter } void loop() { Serial.println(analogRead(A0)); delay(10); }