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
641109475
Feature: This is a basic 4-digit 7-segment display module. The display features double points in midle. The decimal point per digit not active. Module connecting to digital I/O on 2 pins. For Arduino use library: TM1637.h
Package includes:
1 xLED Display Tube
Sketch: #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 }