NHD-C160100CZ-RN-FBW COG (Chip-On-Glass) Liquid Crystal Display Module NHDC160100CZRNFBW- Newhaven Display 160 x 100 Pixels Model Reflective No Backlight FSTN (+) 6:00 Optimal View Wide Temperature RoHS Compliant Newhaven Display International, Inc. 2661 Galvin Ct. Elgin IL, 60124 Ph: 847-844-8795 Fax: 847-844-8796 www.newhavendisplay.com [email protected] [email protected] Document Revision History Revision 0 1 2 3 Date 6/17/2007 9/11/2009 10/14/2009 12/08/2009 4 5 9/2/15 9/18/2015 Description Initial Release User guide reformat Updated Electrical Characteristic Updated Block Diagram, Pins 4 and 5, and Timing Characteristics Mechanical drawing updated Mechanical drawing updated Functions and Features • • • • • • 160 x 100 pixels Built-in ST7528 controller Parallel 8080 interface +3.0V power supply 1/100 duty cycle; 1/11 bias RoHS Compliant [2] Changed by BE MC MC AK SB L A I Mechanical Drawing 3 4 A E D I B D F N 20 C O C 1 1 Description 6 Date T N 160*100 DOTS A 5 Rev REAR 2 FRONT 1 B C D Date 09/18/15 3 Unit Gen. Tolerance Detail of A 2 A ±0.3mm 4 mm 5 Model: NHD-C160100CZ-RN-FBW 6 The drawing contained herein is the exclusive property of Newhaven Display International, Inc. and shall not be copied, reproduced, and/or disclosed in any format without permission. [3] Pin Description and Wiring Diagram Pin No. 1 2 3 4 5 6-13 14 15 16 17 18 19 20 Symbol CSB RST A0 /WR /RD DB0-DB7 VDD VSS VOUT V4 V3 V2 V1 External Connection MPU MPU MPU MPU MPU MPU Power Supply Power Supply Power Supply Power Supply Power Supply Power Supply Power Supply Function Description Active LOW Chip Select signal Active LOW Reset signal Register Select signal. A0=1: Data, A0=0: Command Active LOW Write signal Active LOW Read signal Bi-directional 8-bit data bus. Supply voltage for LCD and logic (+3.0V) Ground Connect to 1uF cap to VSS or VDD 1.0uF-2.2uF cap to VSS 1.0uF-2.2uF cap to VSS 1.0uF-2.2uF cap to VSS 1.0uF-2.2uF cap to VSS Recommended LCD connector: 0.5mm pitch pins. Molex p/n: 52746-2070 Backlight connector: --- Mates with: --- [4] Electrical Characteristics Item Operating Temperature Range Storage Temperature Range Supply Voltage Supply Current Symbol Top Tst VDD IDD Supply for LCD (contrast) “H” Level input “L” Level input “H” Level output “L” Level output VDD-V0 Vih Vil Voh Vol Optical Characteristics Item Viewing Angle – Top Viewing Angle – Bottom Viewing Angle – Left Viewing Angle – Right Contrast Ratio Response Time (rise) Response Time (fall) Symbol Condition Absolute Max Absolute Max Ta=25℃, VDD=3.0V Ta=25℃ Condition Cr≥2 Cr Tr Tf - Controller Information Min. -20 -30 2.8 - Typ. 3.0 1.5 Max. +70 +80 3.3 2.5 Unit ⁰C ⁰C V mA 11.3 0.7*VDD VSS 0.7*VDD VSS 11.5 - 11.7 VDD 0.3*VDD VDD 0.3*VDD V V V V V Min. 5 - Typ. 35 65 40 40 13 25 47 Max. 400 400 Unit ⁰ ⁰ ⁰ ⁰ ms ms Built-in ST7528 controller. Please download specification at http://www.newhavendisplay.com/app_notes/ST7528.pdf [5] Table of Commands [6] [7] [8] Timing Characteristics [9] Example Initialization Program //------------------------------------------------------------void write_command(unsigned char datum) { A0=0; E=1; P1 = datum; CS1=0; RW=0; RW=1; CS1=1; } /*Instruction register*/ /*Read inactive*/ /*put data on port 1*/ /*Chip select active*/ /*Write active*/ /*Write inactive; latch in data*/ /*Chip select inactive*/ //------------------------------------------------------------void write_data(unsigned char datum) { A0=1; E=1; P1=datum; CS1=0; RW=0; RW=1; CS1=1; } /*DDRAM data register*/ //------------------------------------------------------------void lcd_init(void){ write_command(0xA2); write_command(0xAE); //ICON OFF; //Display OFF write_command(0x48); write_command(0x80); write_command(0xa1); write_command(0xc8); write_command(0x40); write_command(0x00); write_command(0xab); //Set Duty ratio //No operation //Set scan direction //changed from 0 to 1 //SHL select //Set START LINE write_command(0x64); delay(2000); write_command(0x65); delay(2000); write_command(0x66); delay(2000); write_command(0x67); delay(2000); //3x //OSC on //4x //5x //6x write_command(Ra_Rb); //RESISTER SET write_command(0x81); //Set electronic volume register write_command(vopcode); //n=0~3f write_command(0x57); write_command(0x92); //1/12bias //FRC and pwm write_command(0x2C); [10] delay(20000);//200ms write_command(0x2E); delay(20000);//200ms write_command(0x2F); delay(20000);//200ms write_command(0x92); //frc and pwm write_command(0x38); //external mode write_command(0x75); //start settings for 16-level grayscale write_command(0x97); //3frc,45pwm write_command(0x80); write_command(0x00); write_command(0x81); write_command(0x00); write_command(0x82); write_command(0x00); write_command(0x83); write_command(0x00); write_command(0x84); write_command(0x06); write_command(0x85); write_command(0x06); write_command(0x86); write_command(0x06); write_command(0x87); write_command(0x06); write_command(0x88); write_command(0x0b); write_command(0x89); write_command(0x0b); write_command(0x8a); write_command(0x0b); write_command(0x8b); write_command(0x0b); write_command(0x8c); write_command(0x10); write_command(0x8d); write_command(0x10); write_command(0x8e); write_command(0x10); write_command(0x8f); write_command(0x10); write_command(0x90); write_command(0x15); write_command(0x91); write_command(0x15); write_command(0x92); write_command(0x15); write_command(0x93); write_command(0x15); write_command(0x94); write_command(0x1a); write_command(0x95); write_command(0x1a); write_command(0x96); [11] write_command(0x1a); write_command(0x97); write_command(0x1a); write_command(0x98); write_command(0x1e); write_command(0x99); write_command(0x1e); write_command(0x9a); write_command(0x1e); write_command(0x9b); write_command(0x1e); write_command(0x9c); write_command(0x23); write_command(0x9d); write_command(0x23); write_command(0x9e); write_command(0x23); write_command(0x9f); write_command(0x23); write_command(0xa0); write_command(0x27); write_command(0xa1); write_command(0x27); write_command(0xa2); write_command(0x27); write_command(0xa3); write_command(0x27); write_command(0xa4); write_command(0x2b); write_command(0xa5); write_command(0x2b); write_command(0xa6); write_command(0x2b); write_command(0xa7); write_command(0x2b); write_command(0xa8); write_command(0x2f); write_command(0xa9); write_command(0x2f); write_command(0xaa); write_command(0x2f); write_command(0xab); write_command(0x2f); write_command(0xac); write_command(0x32); write_command(0xad); write_command(0x32); write_command(0xae); write_command(0x32); write_command(0xaf); write_command(0x32); write_command(0xb0); write_command(0x35); write_command(0xb1); write_command(0x35); write_command(0xb2); [12] write_command(0x35); write_command(0xb3); write_command(0x35); write_command(0xb4); write_command(0x38); write_command(0xb5); write_command(0x38); write_command(0xb6); write_command(0x38); write_command(0xb7); write_command(0x38); write_command(0xb8); write_command(0x3a); write_command(0xb9); write_command(0x3a); write_command(0xba); write_command(0x3a); write_command(0xbb); write_command(0x3a); } write_command(0xbc); write_command(0x3c); write_command(0xbd); write_command(0x3c); write_command(0xbe); write_command(0x3c); write_command(0xbf); write_command(0x3c); //end settings for 16-level grayscale write_command(0x38); write_command(0x74); write_command(0xaf); //Display ON //------------------------------------------------------------- [13] Quality Information Test Item Content of Test High Temperature storage Endurance test applying the high storage temperature for a long time. Endurance test applying the low storage temperature for a long time. Endurance test applying the electric stress (voltage & current) and the high thermal stress for a long time. Endurance test applying the electric stress (voltage & current) and the low thermal stress for a long time. Endurance test applying the electric stress (voltage & current) and the high thermal with high humidity stress for a long time. Endurance test applying the electric stress (voltage & current) during a cycle of low and high thermal stress. Endurance test applying vibration to simulate transportation and use. Low Temperature storage High Temperature Operation Low Temperature Operation High Temperature / Humidity Operation Thermal Shock resistance Vibration test Static electricity test Test Condition Endurance test applying electric static discharge. Note 1: No condensation to be observed. Note 2: Conducted after 4 hours of storage at 25⁰C, 0%RH. Note 3: Test performed on product itself, not inside a container. 2 -30⁰C , 48hrs 1,2 +70⁰C 48hrs 2 -20⁰C , 48hrs 1,2 +40⁰C , 90% RH , 48hrs 1,2 -0⁰C,30min -> 25⁰C,5min -> 50⁰C,30min = 1 cycle 10 cycles 10-55Hz , 15mm amplitude. 60 sec in each of 3 directions X,Y,Z For 15 minutes VS=800V, RS=1.5kΩ, CS=100pF One time Precautions for using LCDs/LCMs See Precautions at www.newhavendisplay.com/specs/precautions.pdf Warranty Information and Terms & Conditions http://www.newhavendisplay.com/index.php?main_page=terms [14] Note +80⁰C , 48hrs 3