#include <TM1637Display.h>
#define DISPLAY_CLK 10
#define DISPLAY_DIO 11
#define JOYSTICK_HORZ 21
#define JOYSTICK_SEL 22
TM1637Display display(DISPLAY_CLK, DISPLAY_DIO); //creo mi objeto display
void setup() {
display.setBrightness(0x0a);
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32-S3!");
pinMode(JOYSTICK_HORZ, INPUT);
pinMode(JOYSTICK_SEL, INPUT_PULLUP);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}