void setup() {
Serial.begin(9600);
// put your setup code here, to run once:
}
void loop() {
int x = analogRead(A1);
int y = analogRead(A0);
Serial.print(x);
Serial.print(" ");
Serial.println(y);
delay(10);
}
void setup() {
Serial.begin(9600);
// put your setup code here, to run once:
}
void loop() {
int x = analogRead(A1);
int y = analogRead(A0);
Serial.print(x);
Serial.print(" ");
Serial.println(y);
delay(10);
}