void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
int horz = analogRead(35);
int vert = analogRead(32);
Serial.println(String(horz)+":"+String(vert));
delay(200); // this speeds up the simulation
}