const int SENSOR_PIN = A0; void setup() { Serial.begin(115200); } void loop() { Serial.println(analogRead(SENSOR_PIN)); delay(100); }