void setup() {
// put your setup code here, to run once:
// joystick
const int xPin = A0; // horiz (blue wire)
const int yPin = A1; // vert (green wire)
const int switchPin = 12; // joystick button in pin 12
}
void loop() {
// put your main code here, to run repeatedly:
}