void setup() {
Serial.begin(9600);
}
void loop() {
int key = analogRead(A0);
Serial.println(key);
delay(200); // Add a small delay to make the output readable
}
void setup() {
Serial.begin(9600);
}
void loop() {
int key = analogRead(A0);
Serial.println(key);
delay(200); // Add a small delay to make the output readable
}