#include <TM1637.h>
// Define the pins for TM1637 (CLK, DIO)
#define CLK_PIN 2
#define DIO_PIN 3
TM1637 tm1637(CLK_PIN, DIO_PIN);
void setup() {
Serial.begin(115200);
display.setBrightness(7); // Set the brightness level (0-7)
int y = 2023;
tm1637.display(0, y / 1000); // 2
tm1637.display(1, y / 100 % 10); // 0
tm1637.display(2, y / 10 % 10); // 2
tm1637.display(3, y % 10); // 3 ?
}
void loop() {
delay(1000);
}