NHD-7.0-800480WF-CTXI# Newhaven Display, NHD-7.0-800480WF-CTXI# Datasheet

no-image

NHD-7.0-800480WF-CTXI#

Manufacturer Part Number
NHD-7.0-800480WF-CTXI#
Description
TFT Displays & Accessories 7.0 TFT 800x480 165.0 x 104.4 x 7.09
Manufacturer
Newhaven Display
Datasheet

Specifications of NHD-7.0-800480WF-CTXI#

Lead Free Status / Rohs Status
 Details
I‐ 
#‐ 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
NHD‐7.0‐800480WF‐CTXI# 
TFT (Thin‐Film‐Transistor) Color Liquid Crystal Display Module 
 
NHD‐   
7.0‐ 
800480‐ 
WF‐ 
C‐ 
T‐ 
X‐ 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Newhaven Display 
7.0” Diagonal 
800xRGBx480 pixels 
Model 
Built‐in Controller 
White LED backlight 
TFT 
6:00 view, Wide Temp 
RoHS Compliant 
 
 
 
 
 
nhtech@newhavendisplay.com   
 
 
 
 
 
 
 
 
 
 
 
 
www.newhavendisplay.com 
Newhaven Display International, Inc. 
2511 Technology Drive, Suite 101 
Elgin IL, 60124 
Ph: 847‐844‐8795 
 
nhsales@newhavendisplay.com 
Fax: 847‐844‐8796 

Related parts for NHD-7.0-800480WF-CTXI#

NHD-7.0-800480WF-CTXI# Summary of contents

Page 1

... NHD‐7.0‐800480WF‐CTXI#  TFT (Thin‐Film‐Transistor) Color Liquid Crystal Display Module    NHD‐    Newhaven Display  7.0‐    7.0” Diagonal  800480‐  800xRGBx480 pixels  WF‐  ...

Page 2

Document Revision History  Revision  Date  0  8/31/2010  1  10/5/2010  2  2/8/2011  3  2/23/2011  4  3/3/2011      Functions and Features  • 800xRGBx480 resolution  • LED backlight  • 8‐bit digital RGB interface  • 262,144 colors  • SSD1963 8‐bit controller    Description  Initial Release  Mechanical Drawing updated  Initialization code added  Grammar/symbols updated  Mechanical drawing updated    Changed by  MC  BE  AK  BE  BE  ...

Page 3

... Mechanical Drawing Newhaven Display NHD-7.0-800480WF-CTXI# ...

Page 4

CON1 1 40 19.5 23.6 CN-FPC-20P/P1.0 (Up-Side) 94. GND 2 VDD R DB0 8 DB1 9 DB2 10 DB3 11 DB4 12 DB5 ...

Page 5

CON2 LCD Pin Description   Pin No.  Symbol   Connection  1  GND  Power Supply  2  VDD  Power Supply  3  NC  ‐ 4  D/C#  MPU  5  WR#  MPU  6  RD#  MPU  7‐14  DB0~DB7  MPU  15  CS#  MPU  16  NC  ‐ 17  NC  ‐ 18  RST#  MPU  19  NC  ‐ ...

Page 6

Electrical Characteristics  Item  Operating Temperature Range  Storage Temperature Range  Supply Voltage  Supply Current  “H” Level input  “L” Level input  Backlight Supply Voltage  Backlight Supply Current   Backlight Lifetime      Optical Characteristics  Item  Viewing Angle –Vertical (Top)  Viewing Angle –Vertical (Bottom)  Viewing Angle – Horizontal (Left)  Viewing Angle – Horizontal (Right)  Contrast Ratio  Luminance  Response Time (rise)  Response Time (fall)            Symbol  Condition Top  Absolute Max Tst  Absolute Max VDD  o IDD  VDD=3.3V 25 ...

Page 7

Controller Information  Built‐in SSD1963 controller.  Please download specification at http://www.newhavendisplay.com/app_notes/SSD1963.pdf      Parallel Interface:  The SSD1963 controller supports both 8080 mode and 6800 mode.   See the SSD1963 datasheet for detailed timing diagrams.    Command Instructions:  See the SSD1963 datasheet for the Instruction Table and Command Descriptions.    Pixel Data Format:                                      ...

Page 8

Example Initialization Program    /*******************************************************************************  * Function Name  : UILCD_Init  * Description    : Initializes LCD.  * Input          : None  * Output         : None  * Return         : None  *******************************************************************************/  void TFT_7_Init(void)  {  GPIO_ResetBits(GPIOC, CS1);  GPIO_SetBits(GPIOC, nRD);  GPIO_ResetBits(GPIOC, nWR);  GPIO_WriteBit(GPIOC, RES, Bit_RESET);  TFT_delay(5);  GPIO_WriteBit(GPIOC, RES, Bit_SET);  TFT_delay(100);  TFT_7_Write_Command(0x01);     //Software Reset  TFT_7_Write_Command(0x01);  TFT_7_Write_Command(0x01);  TFT_delay(10);  TFT_7_Command_Write(0xe0,0x01);    //START PLL  TFT_7_Command_Write(0xe0,0x03);    //LOCK PLL  TFT_7_Write_Command(0xb0);                                //SET LCD MODE  SET TFT 18Bits MODE  GPIO_SetBits(GPIOC, RS);  TFT_7_Write_Data(0x08);                                            //SET TFT MODE & hsync+Vsync+DEN MODE  TFT_7_Write_Data(0x80);                                            //SET TFT MODE & hsync+Vsync+DEN MODE  TFT_7_Write_Data(0x03);                                            //SET horizontal size=800‐1 HightByte  TFT_7_Write_Data(0x1f);                                 //SET horizontal size=800‐1 LowByte  TFT_7_Write_Data(0x01);                                            //SET vertical size=480‐1 HightByte  TFT_7_Write_Data(0xdf);                                            //SET vertical size=480‐1 LowByte  TFT_7_Write_Data(0x00);                                            //SET even/odd line RGB seq.=RGB  TFT_7_Command_Write(0xf0,0x00);      //SET pixel data I/F format=8bit  TFT_7_Command_Write(0x36,0x09);      //SET address mode=flip vertical, BGR  TFT_7_Command_Write(0x3a,0x60);   // SET R G B format = 6 6 6  TFT_7_Write_Command(0xe2);                                //SET PLL freq=113.33MHz  GPIO_SetBits(GPIOC, RS);  TFT_7_Write_Data(0x22);  TFT_7_Write_Data(0x03);  ...

Page 9

GPIO_SetBits(GPIOC, RS);  TFT_7_Write_Data(0x01);                                            //SET Vsync total = 496   TFT_7_Write_Data(0xef);  TFT_7_Write_Data(0x00);                                            //SET VBP=4  TFT_7_Write_Data(0x04);  TFT_7_Write_Data(0x01);                                            //SET Vsync pulse 2=1+1  TFT_7_Write_Data(0x00);                                            //SET Vsync pulse start position  TFT_7_Write_Data(0x00);  TFT_7_Write_Command(0x2a);                                //SET column address  GPIO_SetBits(GPIOC, RS);  TFT_7_Write_Data(0x00);                                            //SET start column address=0  TFT_7_Write_Data(0x00);  TFT_7_Write_Data(0x03);                                            //SET end column address=799  TFT_7_Write_Data(0x1f);  TFT_7_Write_Command(0x2b);                                //SET page address  GPIO_SetBits(GPIOC, RS);  TFT_7_Write_Data(0x00);                                            //SET start page address=0  TFT_7_Write_Data(0x00);  TFT_7_Write_Data(0x01);                                            //SET end page address=479  TFT_7_Write_Data(0xdf);  /*TFT_7_Write_Command(0x33);                            //SET scroll area  GPIO_SetBits(GPIOC, RS);  TFT_7_Write_Data(0x00);                                            //SET top fixed area=0  TFT_7_Write_Data(0x00);  TFT_7_Write_Data(0x01);                                            //SET vertical scrolling area=479  TFT_7_Write_Data(0xdf);  TFT_7_Write_Data(0x00);                                            //SET bottom fixed area=0  TFT_7_Write_Data(0x00);  TFT_7_Write_Command(0x28);                                //SET display off */  }    void TFT_7_Write_Command(unsigned char command)  {  GPIO_Write(GPIOB, command);  GPIO_ResetBits(GPIOC, RS);  GPIO_ResetBits(GPIOC, nWR);  GPIO_SetBits(GPIOC, nWR);  }    void TFT_7_Write_Data(unsigned char data1)  ...

Page 10

GPIO_SetBits(GPIOC, nWR);  GPIO_Write(GPIOB, (color>>8));  GPIO_ResetBits(GPIOC, nWR);  GPIO_SetBits(GPIOC, nWR);  GPIO_Write(GPIOB, (color));  GPIO_ResetBits(GPIOC, nWR);  GPIO_SetBits(GPIOC, nWR);  }    void TFT_7_WindowSet(unsigned int s_x,unsigned int e_x,unsigned int s_y,unsigned int e_y)  {  TFT_7_Write_Command(0x2a);                                //SET page address  TFT_7_Write_Data((s_x)>>8);                                   //SET start page address=0  TFT_7_Write_Data(s_x);  TFT_7_Write_Data((e_x)>>8);                                   //SET end page address=639  TFT_7_Write_Data(e_x);    TFT_7_Write_Command(0x2b);                                //SET column address  TFT_7_Write_Data((s_y)>>8);                                   //SET start column address=0  TFT_7_Write_Data(s_y);  TFT_7_Write_Data((e_y)>>8);                                   //SET end column address=479  TFT_7_Write_Data(e_y);  }                                    ...

Page 11

Quality Information  Test Item  High Temperature storage  storage temperature for a long time.  Low Temperature storage  Endurance test applying the low storage  temperature for a long time.  High Temperature  Endurance test applying the electric stress  Operation  (voltage & current) and the high thermal  stress for a long time.  Low Temperature  Endurance test applying the electric stress  Operation  (voltage & current) and the low thermal  stress for a long time.  High Temperature /  Endurance test applying the electric stress  Humidity Operation  (voltage & current) and the high thermal  with high humidity stress for a long time.  Thermal Shock resistance  Endurance test applying the electric stress  (voltage & current) during a cycle of low  and high thermal stress.   Vibration test  Endurance test applying vibration to  simulate transportation and use.  Static electricity test  Endurance test applying electric static  discharge.  Note 1: No condensation to be observed.  Note 2: Conducted after 4 hours of storage at 25 Note 3:  Test performed on product itself, not inside a container.      Precautions for using LCDs/LCMs  See Precautions at www.newhavendisplay.com/specs/precautions.pdf  ...

Related keywords