R35.00 Standard shipping using one of our trusted couriers applies to most areas in South Africa. Some areas may attract a R30.00 surcharge. This will be calculated at checkout if applicable. Check my rate
The seller has indicated that they will usually have this item
ready to ship within 12 business days.
Shipping time depends on your delivery address.
The most accurate delivery time will be calculated at checkout,
but in general, the following shipping times apply:
Replacement Guarantee:
7 Days: We stand by this guarantee
Get it now, pay later
Product details
Condition
New
Location
International
Bob Shop ID
641112079
Description: This is a basic, 4-digit 7-segment display module (YELLOW). The display features decimal points per digit. Module connecting to digital I/O on 2 pins. For Arduino use library: TM1637.h
Digit dim.
0.36
Dots
decimal
Driver IC
TM1637
Color
YELLOW
Display size
30x14mm
Voltage
5V
Documents:
Package includes: 5 x Display Module
Scetch: #include TM1637.h // include the TM1637 library TM1637 display(2, 3);// // initialize the library for pins 2, 3 void setup() { display.init(); // Start display display.set(7); //Setup brightness 0 to 7 int8_t Disp[4]; //Dimension of digits } void loop() { Disp[0] = 1; //Write digits to dimension Disp[1] = 2; Disp[2] = 3; Disp[3] = 4; display.display(Disp); //Show dimension(digits) to display }