NHD 12232az FL Ybw

Download as pdf or txt
Download as pdf or txt
You are on page 1of 10

NHD-12232AZ-FL-YBW

Graphic Liquid Crystal Display Module

NHD- Newhaven Display


12232- 122 x 32 Pixels
AZ- Model
F- Transflective
L- Yellow/Green LED Backlight
Y- STN - Yellow/Green
B- 6:00 Optimal View
W- 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 Date Description Changed by
0 10/22/2008 Initial Release -
1 3/16/2010 User guide reformat BE
2 4/15/2010 Controller update BE
3 5/5/2010 Block Diagram update BE
4 8/5/2010 Electrical Characteristics Update MP
5 10/25/2011 Electrical characteristics updated AK
6 4/19/2012 Sample code updated SB
7 2/8/16 Updated Controller Information, Datasheet Reformat SB
8 8/9/16 Mechanical Drawing, Electrical & Optical Char. Updated SB

Functions and Features


• 122 x 32 pixels
• Built-in SBN1661G_M18 Controller
• +5.0V power supply
• 1/32 duty cycle; 1/9 bias
• RoHS Compliant

[2]
L
Mechanical Drawing
1 2 3 4 5 6
Rev Description Date

I A
A A

N T
E
B B

I D
PIN ASSIGNMENT

F
1 VSS
2 VDD
3 V0
4 RST

N
5 E1
6 E2
C 7 R/W C
DOTS DETAIL 8 A0
9 DB0

O
10 DB1
11 DB2
12 DB3

C
13 DB4
14 DB5
Notes: 15 DB6
1. Driving: 1/32 Duty, 1/6 Bias 16 DB7
SCALE=10:1 17 LED+
2. Voltage: 5.0V VDD, 4.5V VLCD 18 LED-
D 3. Display Mode: STN Positive / Yellow-Green / Transflective D
Date
4. Optimal View: 6:00 08/09/16
5. Backlight: Yellow-Green LED Gen. Tolerance Unit Model:
6. Driver IC: SBN1661G-M18 ±0.3mm mm NHD-12232AZ-FL-YBW
1 2 3 4 5 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. Symbol External Function Description
Connection
1 VSS Power Supply Ground
2 VDD Power Supply Power supply for logic (+5.0V)
3 V0 Adj Power Supply Power supply for contrast (approx. 0.5V)
4 RST MPU Active LOW Reset signal
5 E1 MPU Operation enable signal. Falling edge triggered, SEG (1~60)
6 E2 MPU Operation enable signal. Falling edge triggered, SEG (61~120)
7 R/W MPU Read/Write select signal, R/W=1: Read R/W: =0: Write
8 A0 MPU Register select signal. A0=0: Command, A0=1: Data
9-16 DB0-DB7 MPU This is an 8-bit bi-directional data bus
17 LED+ Power Supply Power supply for LED Backlight (+5.0V via on-board resistor)
18 LED- Power Supply Ground for Backlight

Recommended LCD connector: 2.54mm pitch pins


Backlight connector: - Mates with: -

[4]
Electrical Characteristics
Item Symbol Condition Min. Typ. Max. Unit
Operating Temperature Range TOP Absolute Max -20 - +70 ⁰C
Storage Temperature Range TST Absolute Max -30 - +80 ⁰C
Supply Voltage VDD - 4.8 5.0 5.2 V
Supply Current IDD VDD = 5.0V 0.5 0.6 2.0 mA
Supply for LCD (contrast) VLCD TOP = 25°C 4.3 4.5 4.7 V
“H” Level input VIH - 2.2 - VDD V
“L” Level input VIL - VSS - 0.6 V
“H” Level output VOH - 2.4 - VDD V
“L” Level output VOL - VSS - 0.4 V

Backlight Supply Voltage VLED - 4.8 5.0 5.2 V


Backlight Supply Current ILED VLED = 5.0V 100 120 140 mA

Optical Characteristics
Item Symbol Condition Min. Typ. Max. Unit
Top ϕY+ - 40 - ⁰
Optimal Viewing Bottom ϕY- - 60 - ⁰
CR ≥ 2
Angles Left θX- - 60 - ⁰
Right θX+ - 60 - ⁰
Contrast Ratio CR - 2 5 - -
Rise TR - 150 250 ms
Response Time TOP = 25°C
Fall TF - 200 300 ms

Controller Information
Built-in SBN1661G_M18 controller.
Please download specification at http://www.newhavendisplay.com/app_notes/SBN1661G.pdf

[5]
Table of Commands

[6]
Timing Characteristics

[7]
[8]
Example Initialization Program:
/*****************************************/
void Comleft(char i)
{
P1 = i;
R_W = 0;
D_I = 0;
E1 = 1;
delay(2);
E1 = 0;
}

void Comright(char i)
{
P1 = i;
R_W = 0;
D_I = 0;
E2 = 1;
delay(2);
E2 = 0;
}

void Writeleft(char i)
{
P1 = i;
R_W = 0;
D_I = 1;
E1 = 1;
delay(2);
E1 = 0;
}

void Writeright(char i)
{
P1 = i;
R_W = 0;
D_I = 1;
E2 = 1;
delay(2);
E2= 0;
}
/*****************************************/
void bothSides(char i)
{
Comleft(i);
Comright(i);
}
/*****************************************/

void init()
{
P1 = 0;
P3 = 0;
RST = 0; //Reset RST
delay(1);
RST = 1; //Reset RST= M68 Interface
delay(10);
D_I = 0;
R_W = 1;

bothSides(0xE2); //0xE2 – Software reset


delay(10);
bothSides(0xA4); //0xA4 – Static Driver off
bothSides(0xA9); //0xA9 – select 1/32 duty
bothSides(0xA0); //0xA0 – Memory/Segment mapping normal
bothSides(0xEE); //0xEE – End
bothSides(0xC0); //0xC0 – start at line address 0x00
bothSides(0xAF); //0xAF – display on
}
/*****************************************/

[9]
Quality Information
Test Item Content of Test Test Condition Note
High Temperature storage Endurance test applying the high +80⁰C , 200hrs 2
storage temperature for a long time.
Low Temperature storage Endurance test applying the low storage -30⁰C , 200hrs 1,2
temperature for a long time.
High Temperature Endurance test applying the electric stress +70⁰C 200hrs 2
Operation (voltage & current) and the high thermal
stress for a long time.
Low Temperature Endurance test applying the electric stress -20⁰C , 200hrs 1,2
Operation (voltage & current) and the low thermal
stress for a long time.
High Temperature / Endurance test applying the electric stress +60⁰C , 90% RH , 96hrs 1,2
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 -20⁰C,30min -> 25⁰C,5min ->
(voltage & current) during a cycle of low 70⁰C,30min = 1 cycle
and high thermal stress. 10 cycles
Vibration test Endurance test applying vibration to 10-55Hz , 15mm amplitude. 3
simulate transportation and use. 60 sec in each of 3 directions
X,Y,Z
For 15 minutes
Static electricity test Endurance test applying electric static VS=800V, RS=1.5kΩ, CS=100pF
discharge. One time
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.

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

[10]

You might also like