
In this tutorial we will see how to display the number 10 on the TM1637 display with Arduino.
To make the assembly, we can connect :
Here is the program to display the number 10 on the TM1637 display with Arduino.
Note: you must import the TM1637 .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#include <TM1637Display.h> // Module connection pins (Digital Pins) #define CLK 2 #define DIO 3 TM1637Display display(CLK, DIO); void setup() { display.setBrightness(0x0f); display.showNumberDec(10); //Display 10 in TM1736 display } void loop() { } |