/*
MODDER: red90s
TITLE: GALAGA
//////////////////
/////00000000/////
/////00000000/////
/////00000000/////
///// 0 /////
///// 0 /////
///// /////
///// 0 0 /////
///// 000 /////
//////////////////
*/
#include <MD_MAX72xx.h>
#define MAX_DEVICES 4 //Cantidad de displays 8x8
//maxY o maxX dependera de la posicion y uso de los displays
const int maxX = MAX_DEVICES * 8 - 1;
const int maxY = 7;
#define CLK_PIN 6
#define DATA_PIN 23
#define CS_PIN 22
//BUTTONS
#define der 5
#define izq 16
#define sel 17
//JOYSTICK
/*
#define VERT_PIN A1
#define HORZ_PIN A0
#define SEL_PIN 2
*/
MD_MAX72XX mx = MD_MAX72XX(MD_MAX72XX::PAROLA_HW, CS_PIN, MAX_DEVICES);
int x = 0;
int y = 0;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}