nodemcu drive lcd1602-Arduino中文社区 - Powered by Discuz!

Arduino中文社区

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 2336|回复: 1

nodemcu drive lcd1602

[复制链接]
发表于 2020-3-22 15:05 | 显示全部楼层 |阅读模式
nodemcu驱动lcd1602跟arduino一模一样,只是3v3的供电比较弱,显示亮度暗。
无标题3.png
nodemcu和lcd1602这样接线。
IMG_20200322_145123.jpg
上传程序,
[mw_shl_code=arduino,true]#include <LiquidCrystal.h>
LiquidCrystal lcd(D3,D4,D5,D6,D7,D8);   
void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
  lcd.begin(16,2);

}

void loop() {
  // put your main code here, to run repeatedly:  
  char h[]="xxm!I miss you! ";
  for(int i=0;i<=15;i++)
  {
    lcd.setCursor(i,0);
    lcd.print(h);
    delay(500);
   // Serial.println(h);
  }
  lcd.clear();
  delay(3000);
}[/mw_shl_code]
发表于 2020-3-22 16:02 | 显示全部楼层
LCD模块的LED串联有一个电阻
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|Archiver|手机版|Arduino中文社区

GMT+8, 2024-11-28 06:33 , Processed in 0.164395 second(s), 18 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表