#define SENSOR_PIN 12 void setup() { Serial.begin(115200); } void loop() { int value = analogRead(SENSOR_PIN); Serial.println(value); delay(100); }