日B视频 亚洲,啪啪啪网站一区二区,91色情精品久久,日日噜狠狠色综合久,超碰人妻少妇97在线,999青青视频,亚洲一区二卡,让本一区二区视频,日韩网站推荐

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫文章/發(fā)帖/加入社區(qū)
會員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

探秘NHD - 0420H1Z - FSW - GBW - 3V3字符液晶顯示模塊

chencui ? 2026-06-09 12:45 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

探秘NHD - 0420H1Z - FSW - GBW - 3V3字符液晶顯示模塊

一、模塊概述

NHD - 0420H1Z - FSW - GBW - 3V3是Newhaven Display International推出的一款字符液晶顯示模塊。從其型號就能獲取不少關(guān)鍵信息:“0420”表明該模塊有4行,每行可顯示20個字符;“H1Z”代表特定型號;“F”意味著它是半透反射型;“SW”表示采用側(cè)面白色LED背光;“G”代表STN - 灰度;“B”是6:00視角;“W”說明具備寬溫度范圍( - 20°C到 + 70°C);“3V3”則表示邏輯電源和背光電源均為3.3V,并且該模塊符合RoHS標(biāo)準(zhǔn)。

文件下載:NHD-0420H1Z-FSW-GBW-3V3.pdf

二、功能與特性

顯示規(guī)格

該模塊擁有4行×20字符的顯示能力,能滿足一般信息顯示需求。

內(nèi)置控制器

內(nèi)置SPLC780D或ST7066U控制器,可通過鏈接http://www.newhavendisplay.com/app_notes/SPLC780D.pdf和http://www.newhavendisplay.com/app_notes/ST7066U.pdf下載其詳細(xì)規(guī)格。

電源與電氣特性

采用 + 3.0V電源供電,工作在1/16 duty、1/4 bias模式,且符合RoHS標(biāo)準(zhǔn)。

三、引腳說明與接線圖

Pin No. Symbol External Connection Function Description
1 Vss Power Supply Ground
2 VDD Power Supply Supply voltage for logic (+3.3V)
3 V0 Power Supply Power supply for contrast (approx. 0.3V)
4 RS MPU Register select signal. RS = 0: Command, RS = 1: Data
5 R/W MPU Read/Write select signal, R/W = 1: Read R/W = 0: Write
6 E MPU Operation enable signal. Falling edge triggered.
7 - 10 DB0 - DB3 MPU Four low order bi - directional three - state data bus lines. Not used during 4 - bit operation.
11 - 14 DB4 - DB7 MPU Four high order bi - directional three - state data bus lines.
15 LED+ Power Supply Power supply for LED Backlight (+3.3V)
16 LED - Power Supply Ground for backlight

推薦使用2.54mm間距的引腳作為LCD連接器

四、電氣與光學(xué)特性

電氣特性

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 3.0 3.3 3.5 V
Supply Current IDD Ta = 25°C, VDD = 3.3V - 4.0 5.0 mA
Supply for LCD (contrast) VDD - V0 Ta = 25°C - 3.0 - V
“H” Level input Vih 2.2 - VDD V
“L” Level input Vil 0 - 0.6 V
“H” Level output Voh 2.4 - - V
“L” Level output Vol - - 0.4 V
Backlight Supply Voltage Vled - - 3.3 - V
Backlight Supply Current Iled Vled = 3.3V - 12 - mA

光學(xué)特性

Item Symbol Condition Min. Typ. Max. Unit
Viewing Angle – Vertical (top) AV Cr ≥2 - 25 - ?
Viewing Angle – Vertical (bottom) AV Cr ≥2 - 70 - ?
Viewing Angle – Horizontal (left) AH Cr ≥2 - 30 - ?
Viewing Angle – Horizontal (right) AH Cr ≥2 - 30 - ?
Contrast Ratio Cr - 2 - -
Response Time (rise) Tr - - 120 150 ms
Response Time (fall) Tf - - 120 150 ms

五、初始化程序

8位初始化

/**********************************************************/
void command(char i)
{
    P1 = i;
    D_I = 0; //D/I = LOW : send instruction
    R_W = 0; //R/W = LOW: Write
    E = 1;
    Delay(1); //enable pulse width >= 300ns
    E = 0; //Clock enable: falling edge
}
/**********************************************************/
void write(char i)
{
    P1 = i;
    D_I = 1; //D/I = HIGH : send data
    R_W = 0; //R/W = LOW : Write
    E = 1;
    Delay(1); //enable pulse width >= 300ns
    E = 0; //Clock enable: falling edge
}
void init()
{
    E = 0;
    Delay(100); //Wait >15 msec after power is applied
    command(0x30); //command 0x30 = Wake up
    Delay(30); //must wait 5ms, busy flag not available
    command(0x30); //command 0x30 = Wake up #2
    Delay(10); //must wait 160us, busy flag not available
    command(0x30); //command 0x30 = Wake up #3
    Delay(10);
    command(0x38); //Function set: 8-bit/2-line
    command(0x10); //Set cursor
    command(0x0c); //Display ON; Cursor ON
    command(0x06); //Entry mode set
}

4位初始化

void command(char i)
{
    P1 = i;
    D_I = 0; //D/I = LOW : send instruction
    R_W = 0; //R/W = LOW : Write
    Nybble(); //Send lower 4 bits
    i = i = 300ns
    E = 0; //Clock enable: falling edge
}
void init()
{
    P1 = 0;
    P3 = 0;
    E = 0;
    Delay(100); //Wait >15 msec after power is applied
    P1 = 0x30;
    Delay(30); //must wait 5ms, busy flag not available
    Nybble(); //command 0x30 = Wake up
    Delay(10); //must wait 160us, busy flag not available
    Nybble(); //command 0x30 = Wake up #2
    Delay(10); //must wait 160us, busy flag not available
    Nybble(); //command 0x30 = Wake up #3
    Delay(10);
    P1 = 0x20;
    Nybble(); //Function set: 4-bit interface
    command(0x28); //Function set: 4-bit/2-line
    command(0x10); //Set cursor
    command(0x0F); //Display ON; Blinking cursor
    command(0x06); //Entry Mode set
}

六、質(zhì)量信息與注意事項(xiàng)

質(zhì)量測試

Test Item Content of Test Test Condition Note
High Temperature storage Endurance test applying the high storage temperature for a long time. +80?C , 48hrs 2
Low Temperature storage Endurance test applying the low storage temperature for a long time. - 30?C , 48hrs 1,2
High Temperature Operation Endurance test applying the electric stress (voltage & current) and the high thermal stress for a long time. +70?C 48hrs 2
Low Temperature Operation Endurance test applying the electric stress (voltage & current) and the low thermal stress for a long time. - 20?C , 48hrs 1,2
High Temperature / Humidity Operation Endurance test applying the electric stress (voltage & current) and the high thermal with high humidity stress for a long time. +40?C , 90% RH , 48hrs 1,2
Thermal Shock resistance Endurance test applying the electric stress (voltage & current) during a cycle of low and high thermal stress. 0?C,30min -> 25?C,5min -> 50?C,30min = 1 cycle 10 cycles
Vibration test Endurance test applying vibration to simulate transportation and use. 10 - 55Hz , 15mm amplitude. 60 sec in each of 3 directions X,Y,Z For 15 minutes 3
Static electricity test Endurance test applying electric static discharge. VS = 800V, RS = 1.5kΩ, CS = 100pF One time

注意事項(xiàng)

使用該模塊時,需注意無冷凝現(xiàn)象,部分測試需在25?C、0%RH環(huán)境下存儲4小時后進(jìn)行,振動測試在產(chǎn)品本身而非容器內(nèi)進(jìn)行。同時,可訪問www.newhavendisplay.com/specs/precautions.pdf查看使用LCD/LCM的預(yù)防措施,保修信息和條款可查看http://www.newhavendisplay.com/index.php?main_page=terms 。

各位電子工程師在使用這款模塊時,是否有遇到過一些特殊的問題呢?不妨在評論區(qū)分享交流。

聲明:本文內(nèi)容及配圖由入駐作者撰寫或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問題,請聯(lián)系本站處理。 舉報投訴
  • 初始化程序
    +關(guān)注

    關(guān)注

    1

    文章

    30

    瀏覽量

    6887
收藏 人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評論

    相關(guān)推薦
    熱點(diǎn)推薦

    探索NHD - C0216CU - FSW - GBW - 3V3 COG液晶顯示模塊

    NHD-C0216CU-FSW-GBW-3V3.pdf 模塊概述 NHD - C0216CU - FSW - GBW -
    的頭像 發(fā)表于 06-09 15:30 ?70次閱讀

    NHD-0420AZ-FSW-GBW-33V3字符液晶顯示模塊詳解

    NHD-0420AZ-FSW-GBW-33V3字符液晶顯示模塊詳解 在電子設(shè)計領(lǐng)域,液晶顯示模塊
    的頭像 發(fā)表于 06-09 14:05 ?65次閱讀

    探秘NHD - 0420AZ - FL - GBW - 3V3字符液晶顯示模塊

    探秘NHD - 0420AZ - FL - GBW - 3V3字符
    的頭像 發(fā)表于 06-09 11:40 ?219次閱讀

    NHD - 0420H1Z - FSW - GBW字符液晶顯示模塊深度解析

    NHD - 0420H1Z - FSW - GBW字符液晶顯示
    的頭像 發(fā)表于 06-09 11:20 ?232次閱讀

    深入解析NHD - 0420H1Z - FL - GBW - 3V3字符液晶顯示模塊

    深入解析NHD - 0420H1Z - FL - GBW - 3V3字符液晶顯示
    的頭像 發(fā)表于 06-09 11:20 ?227次閱讀

    NHD - 0420H1Z - FL - GBW - 33V3字符液晶顯示模塊技術(shù)詳解

    NHD - 0420H1Z - FL - GBW - 33V3字符液晶顯示
    的頭像 發(fā)表于 06-09 11:20 ?243次閱讀

    深入剖析NHD - 0420DZ - FL - YBW - 3V3字符液晶顯示模塊

    深入剖析NHD - 0420DZ - FL - YBW - 3V3字符液晶顯示模塊 在電子設(shè)備的
    的頭像 發(fā)表于 06-09 10:55 ?219次閱讀

    NHD - 0220FZ - FSW - GBW - P - 3V3字符液晶顯示模塊技術(shù)剖析

    NHD - 0220FZ - FSW - GBW - P - 3V3字符液晶顯示
    的頭像 發(fā)表于 06-09 10:40 ?230次閱讀

    NHD-0220FZ-FSW-GBW-P-33V3字符液晶顯示模塊技術(shù)解析

    NHD-0220FZ-FSW-GBW-P-33V3字符液晶顯示模塊技術(shù)解析 一、模塊概述 NHD
    的頭像 發(fā)表于 06-09 10:40 ?225次閱讀

    探索NHD - 0420AZ - FL - GBW - 33V3字符液晶顯示模塊

    探索NHD - 0420AZ - FL - GBW - 33V3字符液晶顯示
    的頭像 發(fā)表于 06-09 10:15 ?190次閱讀

    探索NHD - 0216SZ - NSW - BBW - 3V3字符液晶顯示模塊

    探索NHD - 0216SZ - NSW - BBW - 3V3字符液晶顯示模塊 在電子設(shè)計領(lǐng)域,液晶顯
    的頭像 發(fā)表于 06-08 16:30 ?64次閱讀

    NHD - 0216K1Z - FSW - GBW - L字符液晶顯示模塊技術(shù)解析

    - 0216K1Z - FSW - GBW - L是一款2行16字符液晶顯示模塊,具備多種特
    的頭像 發(fā)表于 06-08 15:15 ?83次閱讀

    深入解析NHD - 0208BZ - FSW - GBW - 3V3字符液晶顯示模塊

    International推出的NHD - 0208BZ - FSW - GBW - 3V3字符液晶顯
    的頭像 發(fā)表于 06-08 13:30 ?82次閱讀

    探索NHD - 0208AZ - FSW - GBW - 3V3字符液晶顯示模塊

    探索NHD - 0208AZ - FSW - GBW - 3V3字符液晶顯示
    的頭像 發(fā)表于 06-08 13:15 ?81次閱讀

    探索NHD - 0108BZ - FSY - YBW - 3V3字符液晶顯示模塊

    - 0108BZ - FSY - YBW - 3V3是一款1行8字符液晶顯示模塊,內(nèi)置ST7066U控制器,采用+3.0
    的頭像 發(fā)表于 06-08 11:45 ?230次閱讀
    高要市| 家居| 锡林浩特市| 南雄市| 金乡县| 大宁县| 大厂| 吉林市| 柘城县| 兴仁县| 车致| 澄迈县| 剑阁县| 岳阳市| 郴州市| 津南区| 黎平县| 西和县| 奉节县| 庆元县| 论坛| 从江县| 商洛市| 永登县| 普洱| 乌拉特中旗| 浏阳市| 深泽县| 塘沽区| 固镇县| 阿克陶县| 安多县| 天峻县| 内乡县| 河源市| 星座| 潮安县| 九龙城区| 江达县| 杭州市| 石阡县|