/*
Basic library example for TM1637. Kept small to show the simplest display functionality.
Library based on TM1638 library by Ricardo Batista, adapted by Maxint-RD MMOLE 2018.
Tested to work:
Arduino Nano using Arduino IDE 1.8.2, Nano (Old Bootloader)), 4092 bytes flash, 135 bytes RAM
For more information see https://github.com/maxint-rd/TM16xx
*/
#include <TM1637.h>
#include <TM16xxDisplay.h>
TM1637 module(7, 6); // DIO=7, CLK=6
TM16xxDisplay display(&module, 4); // TM16xx object, 4 digits
void setup() {
display.println(F("HELO"));
}
int nCount=0;
void loop() {
delay(1000);
display.println(nCount++);
}