1
/
of
5
Eletechsup Factory store
6Bit 7 segment LED SPI Digital tube LCD Display Controller Module for Arduiuo DUE Pro mini Nano MEGA2560 with example Code
6Bit 7 segment LED SPI Digital tube LCD Display Controller Module for Arduiuo DUE Pro mini Nano MEGA2560 with example Code
SKU:TB232
11766 in stock
Regular price
$3.99
Regular price
$3.99
Sale price
$3.99
Unit price
/
per
Couldn't load pickup availability
Share
Product Name: with for UNO MEGA2560 example Code ! 6Bit 7 segment LED SPI Digital tube LCD Display Controller Module for Arduino DUE Pro mini Nano with UNO MEGA2560 example Code
Packing list:
1 pcs 6 Digit 7 Seg SPI LCD Display Module
Description:
6 Digit 7 segment Display,provide Arduino MEGA2560/UNO Code;
Backlight : Green
Supply voltage : DC 5VDriver IC : HT1621
Interface : SPI( Only three c ontrol signal ,CS WR Data)
Interface : SPI( Only three c ontrol signal ,CS WR Data)
Support display characters : 0,1,2,3,4,5,6,7,8,9,A,b,C,c,d,E,F,H,h,L,n,N,o,P,r,t,U,-
Size : 77mm * 31mm
Size : 77mm * 31mm
Connect with arduino-Compatible mega2560( Does not include MEGA2560)
arduino-compatible uno/mega2560 Code fragment:
After purchase, please contact me for complete code!
//*******************************************//
.......
void setup()
{
pinMode(CS, OUTPUT); //Pin 2
pinMode(WR, OUTPUT); //Pin 3
pinMode(DATA, OUTPUT); //Pin 4
}
void loop()
{
...
Init_1621() ;
...
while(1)
{
//display 0 to 999999
for(t=0;t<999999;t++)
{
displaydata(t,1,1,1,1);
delay(100) ;
}
...
//****************************************************************************//
