#define ADC_PIN 33 // Connect analog sensor here
void setup() {
Serial.begin(115200);
}
void loop() {
int adcValue = analogRead(ADC_PIN); // 0 - 4095
Serial.println(adcValue); // Send to Serial Plotter
delay(100); // Refresh rate
}