void setup() {
pinMode(A0, INPUT);
}
void loop() {
analogRead(A0);
Serial.println(analogRead(A0));
delay(1000);
}
All I get is gibberish from the serial monitor. I have been using an Arduino UNO but this must work very differently. Any help would be appreciated.