#define ADC_PIN 35 // Connect analog sensor here
void setup() {
Serial.begin(115200); // Start Serial Monitor
}
void loop() {
int adcValue = analogRead(ADC_PIN); // Read ADC value (0 - 4095)
Serial.print("ADC Value: ");
Serial.println(adcValue); // Print to Serial Monitor
delay(500); // Update every 0.5 second
}