void setup() {
Serial.begin(9600); // Set the baud rate
}
void loop() {
float sensorValue = analogRead(A0); // Read analog input on pin A0
Serial.println(sensorValue); // Send the sensor value to Serial Monitor
delay(100); // Delay for a short time
}