Product Name:  with Arduino Code! 10bit 16-Seg SPI LED LCD Display Module TM1622 HT1622 Board

 

Packing list:

 10 Bit 16-Seg SPI LCD TM1622 Display Module(With Pin);

Description:
 

 10 Digit 16-Seg SPI TM1622 LCD Display Module(With Pin)
  
Backlight           :   Blue
Supply voltage   :   DC 5V
Driver IC           :   TM1622(compatible HT1622)
Interface           :   SPI(Only three control signal,CS WR DATA)
Support display characters : 0,1,2,3,4,5,6,7,8,9,A,b,C,c,d,E,e,F,f,g,H,h,I,i,J,k,L,M,m,N,n,O,o,P,q,R,S,T,t,U,u,V,W,w,X,Y,y,Z,-,* 
Size : 92mm x 24mm x 9mm
Weight : 20g
  
Note : 
We only provide the ARDUINO code, please modify the ARDUINO code(C language) for other platforms.

Applications:

for Arduino UNO MEGA2560 LEONARDO MICRO NANO ADAPTER Pro Mini ZERO DUE 
for raspberry pi 3 B+ 4
for MCU AVR PIC ARM
for FPGA/CPLD
for Toy car
for instrument meter
for Electronic hobby DIY
 
 
Connect  with arduino-Compatible UNO( Does not include  UNO)

 
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_1622() ;
   ...

   
while(1)
{
display_String(String_dat1);
delay(2000) ;
display_String(String_dat2);
delay(2000) ;
display_String(String_dat3);
delay(2000) ;
display_String(String_dat4);
delay(2000) ;
display_String(String_dat5);
delay(2000) ;
display_String(String_dat6);
delay(2000) ;
 }

}

//*******************************************//