P-Tec Corporation: PTFT320240CT-3.5-A03Full Spec
P-Tec Corporation: PTFT320240CT-3.5-A03Full Spec
2405 Commerce Circle Alamosa, CO 81101 Phone # (719) 589-3122 E-mail: [email protected] toll free U.S. only (866) 695-4162
Website: www.p-tec.net
Specifications for
PTFT320240CT-3.5-A03Full Spec
320 x 240 TFT DISPLAY
8.16.11 Rev0
00
2010-08-30
First issue
CONTENTS
1. Functions & F eatur es 2. Mechanical specifications 3. B lock diagram 4. Dimensional Outline 5. P in description 6. Maximum absolute limit 7. Electrical characteristics 8. Back light Characteristics 9. Electro-Optical characteristics 10. Timing Characteristics 11. Control and Display Instruction 12. Quality Specifications 2 2 2 3 4 4 5 5 5 6-7 7-10 10-18
2. MECHANICAL SPECIFICATIONS
2.1. Module size 2.2. Viewing area 2.3. Pixel size 2.4. Weight : 92.0mm(L)*78.4mm(W)*10.5( Max) mm (H) : 73.3mm(L)*55.8mm(W) : 73.0um(W)*219.0um(H) : Approx.
3. BLOCK DIAGRAM
VSS VDD /WR /RD /CS RS /RST DB0DB7
LCD 320*240
3.3V 3.3V
Black/White
0V
LED BackLight
DC/DC Converter
4. DIMENSIONAL OUTLINE
REV A
DATE 2010-08-30
FIT 1 OF 0.3
UNIT mm DATE
APPROVALS
APP:
PTFT320240CT-3.5-A03
AFA320240C T-3.5-A03
DO NOT SCALE THIS DRAWING.
5. PIN DESCRIPTION
No. 1 2 3 4 5 6 7 8 9~16 17 18 19 20 S ymbol VSS VDD LED+ /RST /WR /RD /CS A0 D0~D7 NC NC NC NC Function GND Logic supply voltage (3.3V) Power supply for backlight(+3.3V) Reset signal (L) Write signal Read signal Chip enable signal Register selection (H:Data register, L:Instruction register) Data bus line ---------
-----20 -30
7. ELECTRICAL CHARACTERISTICS
Item Supply Voltage for Logic Input High Voltage Input Low Voltage Output High Voltage Output Low Voltage Supply Current Without Backlight Symbol V DD- V SS V IH V IL VOH VOL I DD Condition Ta = 25C T a = 25 C T a = 25 C T a = 25 C Ta = 25C Min 3.0 08 V DD . 0 08 V DD . 0 -Typ 3.3 --------65 Max 3.6 V DD 02 V DD . V DD 02 V DD . 75
Unit
V V V V V mA
8. BACKLIGHT CHARACTERISTICS
Ta = 25C Item Forward Voltage Forward Current Luminous Intensity (With LCD dots off) L E D B acklight C olor Item Symbol VF IR IV Condition Vled=3.3V Vled=3.3V Vled=3.3V Min 3.0 80 150 W hite Symbol Condition Ta = 25C Humidity: 70% below Forward Current: 20mA Min Typ Max
Unit
Unit
V mA Cd/m 2
---
---
50,000
---
Hr
9. ELECTRO-OPTICAL CHARACTERISTICS
( VDD=3.3V,Vled=5.0V, Ta = 25C ) Item Symbol L Viewing angle R (CR10) T B T on Response time T off C ontrast ratio Cr Luminance L1 Condition =180(9 oclock) =0(3 oclock) =90(12 oclock) =270(6 oclock) Normal = =0 Min 45 45 35 40 ----150 150 Typ 60 60 50 55 10 15 300 200 Max --------20 25 --Unit
degree ms ms --Cd/m2
10.2 MCU Interface Signal Symbol T2 T1 T3 T4 T5 D0-D7 T6 T7 T8 Parameter Address hold time Address setup time System cycle time Strobe pulsewidth Data hold time Data setup time /RD Access time Output disable time 10 V DD=33V . Min 10 0 350 180 80 120 50 50 Max Unit ns ns ns ns ns ns ns ns CL=100p F Condition
RS,/CS
/WR,/RD
Command Code
D7 D6 D5 D4 D3 D2 D1 D0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 1 0 0 0 0 0 1 1 1 0 0 0 0 1 0 0 1 0 0 0 0 1 0 1 1 0 0 0 0 1 1 0 1 0 0 0 0 1 1 1 1 0 1 0 0 0 0 0 1 1 1 1 1 0 0 0 0 1 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 1 1 1 1 0 1 1 1 1 0 -- -- -- --- -- -----0 1 1 0 1 -- --
Function
Display on glayer1 Read and Write on glayer1 Display and Read on glayer1 Write on glayer2 Display and Write on glayer1 Read on glayer2 Display on glayer1 Write and Read on glayer2 Display on glayer2 Read and Write on glayer1 Display and Write on glayer2 Read on glayer1 Display and Read on glayer2 Write on glayer1 Display on glayer2 Write and Read on glayer2 Mix Mode off (Single layer display) Figure 5. Figure 6 Black light off Black light on Mix Mode on (Figure 7.) display off display on Write X Adderss
0x80 0x81 0x82 0x83 0x84 0x85 0x86 0x87 0xa0 0x90 0x91 0xa1 0xfc 0xfd Address set X(0~39) Y(0~239) Write data Read data
0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1
0 0 0 1 0 1 0 1 0 1 1 0
-- --
Figure 5.
void wcomd(uchar ch) { RDD=1;RS=0; CS=0; P1=ch; WRR=0; WRR=1; CS=1; } void wdata(uchar ch) { RDD=1;RS=1; CS=0; P1=ch; WRR=0; WRR=1; CS=1; } unsigned char rdata(void) { uchar ch; WRR=1;RS=1; CS=0; P1=0xff; RDD=0; ch=P1; RDD=1; CS=1; return(ch); } void initial() { wcomd(0x91); wcomd(0xfd); wcomd(0xa0); }
void waddr(uint xdat,uint ydat) { wcomd(xdat); wcomd(ydat); } void disp_all(uchar xsdata) { uint j,k; waddr(0x00,0x00); for(k=0;k<240;k++) { for(j=0;j<40;j++) { wdata(xsdata);} } } void main(void) { RST=0;delay(50);RST=1;delay(20); initial(); while(1) { wcomd(0x80); //display glayer1 (0x80~0x83) disp_all(0xaa); //write display data delay(200); wcomd(0x87); disp_all(0x55); delay(200); wcomd(0xa1); delay(200); wcomd(0xa0); delay(200); wcomd(0xfc); delay(200); wcomd(0xfd); delay(200); .. } } //display glayer2 (0x84~0x87) //write display data
12.QUALITY SPECIFICATIONS
12.1 Standard of the product appearance test
Manner of appearance test: The inspection should be performed in using 20W x 2 fluorescent lamps. Distance between LCM and fluorescent lamps should be 100 cm or more. Distance between LCM and inspector eyes should be 30 cm or more. 9
100cm min
LCD LCM
Definition of zone:
A Zone B Zone A Zone: Active display area (minimum viewing area). B Zone: Non-active display area (outside viewing area).
10
Wrong or missing component Minor Display state Background color deviation B lack spot and dust L ine defect, Scratch R ainbow C hip Pin hole Protruded Polarizer Soldering W ire TAB Bubble and foreign material Poor connection Poor connection Position, Bonding strength
11 2 3 4 5 6 7 12 3 9 10 13 1.0
11
Y X
Point
Size <0.10 0.10< 0.20 0.20< 0.25 0.25< 0.30 >0.30
Acceptable Qty.
Disregard 3 2 1 0
= (X+Y)/2
mm
W L
L ---
Line
W 0.015 W 5.0 L 0.03 W 5.0 L 0.05 W 5.0 L 0.1 W
--0.05<W
Acceptable Qty.
Disregard 2 1
Applied as point defect
Unit: mm 5 Rainbow Not more than two color changes across the viewing area.
12
No 6 Chip
I tem
Remark: X: Length direction Y: Short direction Z: Thickness direction t: Glass thickness W: Terminal Width
Z
/2
Acceptable criterion X Y
3
0.5mm
Acceptable criterion X Y
3 2
Y X
Acceptable criterion X Y Z
Dis egard r 0.2
Acceptable criterion X Y Z
t/3
13
N o. 7
C riterion
Point Size
W W W W<
Acceptable Qty
Disregard 1 0
Y Y W 8 Back-light
Unit: m m
(1) The color of backlight should correspond its specification. (2) Not allow flickering
Soldering
(1) Not allow heavy dirty and solder ball on PCB. (The size of dirty refer to point and dust defect) (2) Over 50% of lead should be soldered on Land.
Lead Land
50% lead
10 Wire (1) Copper wire should not be rusted (2) Not allow crack on copper wire connection. (3) Not allow reversing the position of the flat cable. (4) Not allow exposed copper wire inside the flat cable. 11* PCB (1) Not allow screw rust or damage. (2) Not allow missing or wrong putting of component.
14
No 12
C riterion
Acceptable criteria:
Y
Y 0.4
X 13 TAB 1. Position
W H H1 TAB W1 ITO W1 1/3W H1 1/3H
TAB
14
A. Zone Maximum 2 minor non-conformities per one unit. Defect distance: each pon t to be separated over 10mm i B. Zone It is acceptable when it is no trouble for quality and assembly in customers end product.
15
Recovery time should be 24 hours minimum. Moro ver, functions, performance and appearance ,etc. e shall be free from remarkable deterioration within 50,000 hours under ordinary operating and storage conditions room temperature (20 8 C), normal humidity (below 4 20% RH), and in the area not
exposed to direct sun light. The life time is not content the life time of the LED (for the life time of LED which decay only 50%,in the industry the experience value is 50000 hours, but there are not any experimentation data to support this). .
6. Avoid pressing on the metal bezel, otherwise the elastomer connector could be deformed and lose contact, resulting in missing pixelsand also cause rainbow on the display. 7. Be careful not to touch or swallow liquid crystal that might leak from a damaged cell. Any liquid crystal adheres to skin or clothes, wash it off immediately with soap and water.
Static Electricity Precautions: 1. CMOS-LSI is used for the module circuit; ther efore operators should be grounded whenever he/she comes into contact with the module. 2. Do not touch any of the conductive parts such as the LSI pads; the copper leads on the PCB and the interface terminals with any parts of the human body. 3. Do not touch the connection terminals of the display with bare hand; it will cause disconnection or defective insulation of terminals. 4. The modules should be kept in anti-static bags or other containers resistant to static for storage. 5. Only properly grounded soldering irons should be used. 6. If an electric screwdriver is used, it should be grounded and shielded to prevent sparks. 7. The normal static prevention measures should be observed for work clothes and working benches. 8. Since dry air is inductive to static, a relative humidity of 50-60% is recommended. Soldering Precautions: 1. 2. 3. 4. 5. 6. 7. Soldering should be performed only on the I/O terminals. Use soldering irons with proper grounding and no leakage. Soldering temperature: 280 C+10 C Soldering time: 3 to 4 second. Use eutectic solder with resin flux filling. If flux is used, the LCD surface should be protected to avoid spattering flux. Flux residue should be removed.
Operation Precautions: 1. The viewing angle can be adjusted by varying the LCD driving voltage Vo. 2. Since applied DC voltage causes electro-chemical reactions, which deteriorate the display, the applied pulse waveform should be a symmetric waveform such that no DC component remains. Be sure to use the specified operating voltage. 3. Driving voltage should be kept within specified range; excess voltage will shorten display life. 4. Response time increases with decrease in temperature. 5. Display color may be affected at temperatures above its operational range. 6. Keep the temperature within the specified range usage and storage. Excessive temperature and humidity could cause polarization degradation, polarizer peel-off or generate bubbles. 7. For long-term storage over 40 C is required, the relative humidity should be kept below 60%, and avoid direct sunlight.
17
Limited Warranty P-tec Corporation LCDs and modules are not consumer products, but may be incorporated by customers into consumer products or components thereof, P-tec Corporation does not warrant that its LCDs and
components are fit for any such particular purpose.
1. The liability of P-tec Corporation is limited to repair or replacement on the terms set forth below. P-tec
Corporation will not be responsible for any subsequent or consequential events or injury or damage to any personnel or user including third party personal and/or user. Unless otherwise agreed in writing between P-tec Corporation and the customer, P-tec Corporation will only replace or repair any of its LCD which is found defective electrically or visually when inspected in accordance with P-tec Corporation general LCD inspection standard. (Copies available on request) 2. No warrnty can be granted if any of the precautions state in handling liquid crystal display above has been disregarded. Broken glass, scratches on polarizer mechanical damages as well as defects that are caused accelerated environment tests are excluded from warranty. 3. In returning the LCD/LCM, they must be properly packaged; there should be detailed description of the failures or defect.
18