0
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
创作中心
发布
  • 发文章

  • 发资料

  • 发帖

  • 提问

  • 发视频

创作活动
NHD-0440AZ-FL-YBW

NHD-0440AZ-FL-YBW

  • 厂商:

    NEWHAVEN

  • 封装:

    -

  • 描述:

    Character LCD Display Module Transflective 5 x 8 Dots STN - Super-Twisted Nematic LED - Yellow/Green...

  • 数据手册
  • 价格&库存
NHD-0440AZ-FL-YBW 数据手册
      NHD‐0440AZ‐FL‐YBW  Character Liquid Crystal Display Module    NHD‐  0440‐  AZ‐  F‐  L‐  Y‐  B‐  W‐                                                Newhaven Display  4 lines x 40 characters  Model  Transflective    Yellow/Green LED Backlight  STN – Yellow/Green  6:00 view  Wide Temp. (‐20°C ~+70°C)  RoHS Compliant                                          Newhaven Display International, Inc.  2511 Technology Drive, Suite 101  Elgin IL, 60124  Ph: 847‐844‐8795  Fax: 847‐844‐8796  www.newhavendisplay.com  nhsales@newhavendisplay.com  nhtech@newhavendisplay.com                    [1]      Document Revision History  Revision  0  1  2  3            • • • • •           Date  10/21/2008  11/2/2009  11/16/2009  12/16/2009  Description  Initial Release  User Guide Reformat  Updated Block diagram and initialization code  Updated Backlight Supply Current Information  Changed by  ‐  MC  MC  MC  Functions and Features  4 lines x 40 characters  2 Built‐in controllers (SPLC780D or equivalent)  +5.0V Power Supply  1/16 duty, 1/5 bias  RoHS compliant  [2]    Mechanical Drawing Speci cation: 1) Driving: Duty:1/16, Bias:1/5, VLCD:4.5V, VDD:5.0V 2) Viewing Direction: 6 O’clock 3) Display mode: STN/Positive/Trans ective/Yellow-Green 4) Operating temp.: -20°C ~ +70°C Storage temp.: -30°C ~ +80°C 5)Driver: S6A0069 or ST7066 or SPLC780D 6) Backlight: Yellow-Green Backlight/5.0V Newhaven Display NHD-0440AZ-FL-YBW Pin Description and Wiring Diagram  Pin No.  Symbol  1‐4  5‐8  9  10  11  12  13  14  15  16  17  18  DB7‐DB4  DB3‐DB0  E1  R/W  RS  V0  Vss  VDD  E2  NC  LED+  LED‐  External  Connection  MPU  MPU  MPU  MPU  MPU  Power Supply  Power Supply  Power Supply  MPU  ‐ Power Supply  Power Supply  Function Description Four high order bi‐directional three‐state data bus lines.  Four low order bi‐directional three‐state data bus lines. These four  are not used during 4‐bit operation.  Operation enable signal. Falling edge triggered for top 2 lines.  Read/Write select signal, R/W=1: Read R/W:=0: Write  Register select signal. RS=0: Command, RS=1: Data  Power supply for contrast (approx. +0.5V) Ground Supply voltage for logic (+5.0V) Operation enable signal. Falling edge triggered for bottom 2 lines. No Connect Power supply for LED backlight (+5.0V with on board resistor)  Ground for backlight   Recommended LCD connector: 2.54mm pitch pins  Backlight connector:  ‐‐‐          Mates with:   ‐‐‐            [4]      Electrical Characteristics    Item  Operating Temperature Range  Storage Temperature Range  Supply Voltage  Supply Current  Supply for LCD (contrast)  “H” Level input  “L” Level input  “H” Level output  “L” Level output    Backlight Supply Voltage  Backlight Supply Current   Symbol  Top  Tst  VDD  IDD  VDD‐V0  Vih  Vil  Voh  Vol    Vled  Iled  Condition Absolute Max Absolute Max Ta=25°C, VDD=5.0V Ta=25°C  Min. ‐20 ‐30 2.7 ‐ ‐ 2.2 0 2.4 ‐ ‐ ‐ Typ. ‐ ‐ 5.0 3.5 4.5 ‐ ‐ ‐ ‐ 5.0 360 Max.  +70  +80  5.5  4.0  ‐  VDD  0.6  ‐  0.4    ‐  480  Unit ⁰C ⁰C V mA V V V V V V mA ‐ Vled=5.0V     Optical Characteristics  Item  Viewing Angle – Vertical (top)  Viewing Angle – Vertical (bottom)  Viewing Angle – Horizontal (left)  Viewing Angle – Horizontal (right)  Contrast Ratio  Response Time (rise)  Response Time (fall)  Symbol  AV  AV  AH  AH  Cr  Tr  Tf  Condition Cr ≥ 2 Cr ≥ 2 Cr ≥ 2 Cr ≥ 2 ‐ ‐ Min. ‐ ‐ ‐ ‐ ‐ ‐ ‐ Typ. 25 70 30 30 2 120 120 Max.  ‐  ‐  ‐  ‐  ‐  150  150  Unit ⁰  ⁰  ⁰  ⁰  ‐  ms ms           Controller Information  Built‐in SPLC780D. Download specification at http://www.newhavendisplay.com/app_notes/SPLC780D.pdf                                    [5]    Table of Commands        [6]        Timing Characteristics      Writing data from MPU to SPLC780D          Reading data from SPLC780D to MPU                  [7]          Writing Data from MPU to SPLC780D.        Reading Data from SPLC780D to MPU.                                  [8]        Built‐in Font Table            [9]        Example Initialization Program  /************************************************************************/   void command1(char i)                                  //Top half of the display  {                  P1 = i;                  W = 0;                  RS = 0;                  E1 = 1;                  delay(2);                  E1 = 0;                     }  void command2(char i)                                  //Bottom half of the display  {                  P1 = i;                  W = 0;                  RS = 0;                  E2 = 1;                  delay(2);                  E2 = 0;                     }  /************************************************************************/  void writedata1(char i)                                  //Top half of the display  {                  P1 = i;                  W = 0;                  RS = 1;                  E1 = 1;                  delay(2);                  E1 = 0;                     }  void writedata2(char i)                                  //Bottom half of the display  {  [10]                    P1 = i;                  W = 0;                  RS = 1;                  E2 = 1;                  delay(2);                  E2 = 0;                     }  /************************************************************************/  void init_LCD()   {                  delay(15);                  command1(0x30);           //Wake up                  command2(0x30);                  delay(5);                  command1(0x30);           //Wake up                  command2(0x30);                  delay(5);                  command1(0x30);           //Wake up                  command2(0x30);                  delay(5);                  command1(0x38);           //Function Set = 8bit mode; 2‐line; 5x8                  command2(0x38);                  command1(0x08);           //Turn off display                  command2(0x08);                  command1(0x01);           //Clear display                  command2(0x01);                  command1(0x06);           //Entry mode cursor increment                  command2(0x06);                  command1(0x0c);            //Turn on display; no cursor                  command2(0x0c);  }  /************************************************************************/  [11]    Quality Information  Test Item  High Temperature storage  Low Temperature storage  High Temperature  Operation  Low Temperature  Operation  High Temperature /  Humidity Operation  Thermal Shock resistance  Content of Test  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.  Test Condition  +80⁰C , 48hrs ‐30⁰C , 48hrs +70⁰C 48hrs Note 2  1,2 2  ‐20⁰C , 48hrs 1,2 +40⁰C , 90% RH ,  48hrs  1,2 Vibration test  Static electricity test  Endurance test applying electric static  discharge.  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    3    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      [12]   
NHD-0440AZ-FL-YBW 价格&库存

很抱歉,暂时无法提供与“NHD-0440AZ-FL-YBW”相匹配的价格&库存,您可以联系我们找货

免费人工找货