NHD-0216CZ-FL-YBW

更新时间:2024-09-18 07:45:41
品牌:NEWHAVEN
描述:Character Liquid Crystal Display Module

NHD-0216CZ-FL-YBW 概述

Character Liquid Crystal Display Module 字符液晶显示模块 文字显示器、信息显示器

NHD-0216CZ-FL-YBW 数据手册

通过下载NHD-0216CZ-FL-YBW数据手册来全面了解它。这个PDF文档包含了所有必要的细节,如产品概述、功能特性、引脚定义、引脚排列图等信息。

PDF下载
NHD0216CZFLYBW  
Character Liquid Crystal Display Module  
NHD  
0216‐  
CZ‐  
F‐  
L‐  
Y‐  
Newhaven Display  
2 lines x 16 characters  
Model  
Transflective  
Yellow/Green LED Backlight  
STNYellow/Green  
6:00 view  
B‐  
W‐  
Wide Temperature (20°C~+70°C)  
RoHS Compliant  
Newhaven Display International, Inc.  
2511 Technology Drive, Suite 101  
Elgin IL, 60124  
Ph: 8478448795  
Fax: 8478448796  
www.newhavendisplay.com  
nhtech@newhavendisplay.com nhsales@newhavendisplay.com  
[1]  
Document Revision History  
Revision  
Date  
Description  
Initial Release  
User Guide Reformat  
Optical updated  
Changed by  
0
1
2
10/23/2008  
12/11/2009  
1/6/2010  
BE  
BE  
Functions and Features  
2 lines x 16 characters  
Builtin controller (SPLC780D or equivalent)  
+5.0V Power Supply  
1/16 duty, 1/5 bias  
RoHS compliant  
[2]  
Mechanical Drawing  
NHD-0216CZ-FL-YBW  
Newhaven Display  
Pin Description and Wiring Diagram  
Pin No. Symbol  
External  
Connection  
Function Description  
1
2
VDD  
V0  
Power Supply  
Supply Voltage for logic (+5.0V)  
Adj Power Supply Power supply for contrast (approx. 0.5V)  
3
4
5
69  
RS  
R/W  
E
MPU  
MPU  
MPU  
MPU  
Register select signal. RS=0: Command, RS=1: Data  
Read/Write select signal, R/W=1: Read R/W: =0: Write  
Operation enable signal. Falling edge triggered.  
Four low order bidirectional threestate data bus lines. These four  
are not used during 4bit operation.  
DB0 – DB3  
1013  
14  
A
DB4 – DB7  
VSS  
MPU  
Four high order bidirectional threestate data bus lines.  
Ground  
Power supply for LED Backlight (+4.2V)  
Ground for Backlight  
Power Supply  
Power Supply  
Power Supply  
LED+  
LED‐  
K
Recommended LCD connector: 1.0mm pitch pins  
Backlight connector: ‐‐‐ Mates with: ‐‐‐  
[4]  
Electrical Characteristics  
Item  
Operating Temperature Range  
Storage Temperature Range  
Supply Voltage  
Symbol  
Top  
Tst  
VDD  
IDD  
Condition  
Absolute Max  
Absolute Max  
Min.  
20  
30  
4.7  
Typ.  
5.0  
1.5  
4.5  
Max.  
+70  
+80  
5.5  
2.5  
VDD  
0.6  
Unit  
C  
C  
V
mA  
V
V
V
V
V
Supply Current  
Ta=25°C, VDD=5.0V  
Ta=25°C  
Supply for LCD (contrast)  
“H” Level input  
VDDV0  
Vih  
2.2  
0
2.4  
“L” Level input  
“H” Level output  
“L” Level output  
Vil  
Voh  
Vol  
0.4  
Backlight Supply Voltage  
Backlight Supply Current  
Vled  
Iled  
4.2  
120  
V
mA  
Vled=4.2V  
160  
Optical Characteristics  
Item  
Symbol  
Condition  
Cr 2  
Cr 2  
Cr 2  
Cr 2  
Min.  
Typ.  
25  
70  
30  
30  
2
120  
120  
Max.  
Unit  
ms  
ms  
Viewing Angle – Vertical (top)  
Viewing Angle – Vertical (bottom)  
Viewing Angle – Horizontal (left)  
Viewing Angle – Horizontal (right)  
Contrast Ratio  
AV  
AV  
AH  
AH  
Cr  
Response Time (rise)  
Response Time (fall)  
Tr  
Tf  
150  
150  
Controller Information  
Builtin SPLC780D. Download specification at http://www.newhavendisplay.com/app_notes/SPLC780D.pdf  
[5]  
Table of Commands  
[6]  
Timing Characteristics  
[7]  
[8]  
Builtin Font Table  
[9]  
Example Initialization Program  
8-bit Initialization:  
/**********************************************************/  
void command(char i)  
{
P1 = i;  
D_I =0;  
R_W =0;  
//put data on output Port  
//D/I=LOW : send instruction  
//R/W=LOW : Write  
E
= 1;  
Delay(1);  
= 0;  
//enable pulse width >= 300ns  
//Clock enable: falling edge  
E
}
/**********************************************************/  
void write(char i)  
{
P1 = i;  
D_I =1;  
R_W =0;  
//put data on output Port  
//D/I=LOW : send data  
//R/W=LOW : Write  
E
= 1;  
Delay(1);  
= 0;  
//enable pulse width >= 300ns  
//Clock enable: falling edge  
E
}
/**********************************************************/  
void init()  
{
E = 0;  
Delay(100);  
command(0x30);  
Delay(30);  
command(0x30);  
Delay(10);  
command(0x30);  
//Wait >15 msec after power is applied  
//command 0x30 = Wake up  
//must wait 5ms, busy flag not available  
//command 0x30 = Wake up #2  
//must wait 160us, busy flag not available  
//command 0x30 = Wake up #3  
//must wait 160us, busy flag not available  
//Function set: 8-bit/2-line  
//Set cursor  
Delay(10);  
command(0x38);  
command(0x10);  
command(0x0c);  
command(0x06);  
//Display ON; Cursor ON  
//Entry mode set  
}
/**********************************************************/  
[10]  
4-bit Initialization:  
/**********************************************************/  
void command(char i)  
{
P1 = i;  
D_I =0;  
R_W =0;  
//put data on output Port  
//D/I=LOW : send instruction  
//R/W=LOW : Write  
Nybble();  
i = i<<4;  
P1 = i;  
//Send lower 4 bits  
//Shift over by 4 bits  
//put data on output Port  
//Send upper 4 bits  
Nybble();  
}
/**********************************************************/  
void write(char i)  
{
P1 = i;  
D_I =1;  
R_W =0;  
//put data on output Port  
//D/I=HIGH : send data  
//R/W=LOW : Write  
Nybble();  
i = i<<4;  
P1 = i;  
//Clock lower 4 bits  
//Shift over by 4 bits  
//put data on output Port  
//Clock upper 4 bits  
Nybble();  
}
/**********************************************************/  
void Nybble()  
{
E = 1;  
Delay(1);  
E = 0;  
//enable pulse width >= 300ns  
//Clock enable: falling edge  
}
/**********************************************************/  
void init()  
{
P1 = 0;  
P3 = 0;  
Delay(100);  
P1 = 0x30;  
Delay(30);  
Nybble();  
//Wait >15 msec after power is applied  
//put 0x30 on the output port  
//must wait 5ms, busy flag not available  
//command 0x30 = Wake up  
Delay(10);  
Nybble();  
Delay(10);  
Nybble();  
//must wait 160us, busy flag not available  
//command 0x30 = Wake up #2  
//must wait 160us, busy flag not available  
//command 0x30 = Wake up #3  
Delay(10);  
P1= 0x20;  
Nybble();  
command(0x28);  
command(0x10);  
command(0x0F);  
command(0x06);  
//can check busy flag now instead of delay  
//put 0x20 on the output port  
//Function set: 4-bit interface  
//Function set: 4-bit/2-line  
//Set cursor  
//Display ON; Blinking cursor  
//Entry Mode set  
}
/**********************************************************/  
[11]  
Quality Information  
Test Item  
Content of Test  
Endurance test applying the high  
Test Condition  
+80C , 48hrs  
Note  
2
High Temperature storage  
storage temperature for a long time.  
Low Temperature storage Endurance test applying the low storage  
temperature for a long time.  
30C , 48hrs  
+70C 48hrs  
1,2  
2
High Temperature  
Operation  
Endurance test applying the electric stress  
(voltage & current) and the high thermal  
stress for a long time.  
Low Temperature  
Operation  
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.  
20C , 48hrs  
1,2  
1,2  
High Temperature /  
Humidity Operation  
+40C , 90% RH , 48hrs  
Thermal Shock resistance  
Vibration test  
0C,30min > 25C,5min >  
50C,30min = 1 cycle  
10 cycles  
1055Hz , 15mm amplitude.  
60 sec in each of 3 directions  
X,Y,Z  
Endurance test applying vibration to  
simulate transportation and use.  
3
For 15 minutes  
Static electricity test  
Endurance test applying electric static  
discharge.  
VS=800V, RS=1.5kΩ, CS=100pF  
One time  
Note 1: No condensation to be observed.  
Note 2: Conducted after 4 hours of storage at 25C, 0%RH.  
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  
Warranty Information and Terms & Conditions  
http://www.newhavendisplay.com/index.php?main_page=terms  
[12]  

NHD-0216CZ-FL-YBW 相关器件

型号 制造商 描述 价格 文档
NHD-0216EZ-FL-GBW NEWHAVEN Character Liquid Crystal Display Module 获取价格
NHD-0216EZ-FL-YBW NEWHAVEN Character Liquid Crystal Display Module 获取价格
NHD-0216HZ-FL-YBW-C NEWHAVEN Character Liquid Crystal Display Module 获取价格
NHD-0216HZ-FSW-FBW-3V3C NEWHAVEN Liquid Crystal Display Module 获取价格
NHD-0216K1Z-FL-GBW NEWHAVEN Character Liquid Crystal Display Module 获取价格
NHD-0216K1Z-FL-YBW NEWHAVEN Character Liquid Crystal Display Module 获取价格
NHD-0216K1Z-FS NEWHAVEN Character Liquid Crystal Display Module 获取价格
NHD-0216K1Z-FSA-FBW-L NEWHAVEN Character Liquid Crystal Display Module 获取价格
NHD-0216K1Z-FSA-GBW-L NEWHAVEN Character Liquid Crystal Display Module 获取价格
NHD-0216K1Z-FSB-FBW-L NEWHAVEN Character Liquid Crystal Display Module 获取价格

NHD-0216CZ-FL-YBW 相关文章

  • Bourns 密封通孔金属陶瓷微调电位计产品选型手册(英文版)
    2024-09-20
    6
  • Bourns 精密环境传感器产品选型手册(英文版)
    2024-09-20
    9
  • Bourns POWrTher 负温度系数(NTC)热敏电阻手册 (英文版)
    2024-09-20
    8
  • Bourns GMOV 混合过压保护组件产品选型手册(英文版)
    2024-09-20
    6