#include "engine.h"
#include "joystick.h"
#include "simplejoystick.h"
#include "display.h"
SimpleJoystick joystick1(A0, A1, 22, 26);
Joystick joystick2(A2, A3, 23, 27);
Display display1(25, 24);
void setup() {
Serial.begin(9600);
display1.boot();
}
void loop() {
while (true) {
joystick1.read();
joystick2.read();
}
}