#include <TM1637.h>
const int CLK = 2;
const int DIO = 3;
TM1637 tm(CLK, DIO);
void setup() {
tm.init();
tm.set(BRIGHT_TYPICAL);
}
void loop() {
tm.display("12 ");
delay(1000);
tm.display(" 12");
delay(1000);
}
#include <TM1637.h>
const int CLK = 2;
const int DIO = 3;
TM1637 tm(CLK, DIO);
void setup() {
tm.init();
tm.set(BRIGHT_TYPICAL);
}
void loop() {
tm.display("12 ");
delay(1000);
tm.display(" 12");
delay(1000);
}