资料介绍
描述
连接 LCD 屏幕从未如此简单。无需使用任何电线即可将 LCD (16*2) 连接到 Arduino MEGA 2560。
你只需要这两件事,你已经完成了本教程的要求。
本教程在这里无需过多解释!!!
你什么都不做。只需将液晶屏按如下方式连接即可。
只需使用图像作为参考将 VSS 连接到 A0。其他引脚会自然插入。
恭喜!您的电路在 10 秒内完成!
(不用担心 d2(lcd 的)pin 没有进入任何标题内。本教程实际上不需要 D3 到 D0。)
但是,是的,这里的主要区别在于代码。我只给你代码,也不需要解释。只需更改代码中的引脚即可,无需额外添加。
例如。这是显示“hello world”的原始液晶示例:
// include the library code:
#include
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since reset:
lcd.print(millis() / 1000);
}
这是修改后的版本:
#include
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = A3, en = A5, d4 = A9, d5 = A10, d6 = A11, d7 = A12;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
pinMode(A14,OUTPUT);
pinMode(A13,OUTPUT);
pinMode(A4,OUTPUT);
pinMode(A0,OUTPUT);
pinMode(A2,OUTPUT);
pinMode(A1,OUTPUT);
digitalWrite(A14,LOW);
digitalWrite(A13,HIGH);
digitalWrite(A4,LOW);
digitalWrite(A0,LOW);
digitalWrite(A2,LOW);
digitalWrite(A1,HIGH);
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since reset:
lcd.print(millis() / 1000);
}
同样,只需删除打印秒和“hello world”的部分代码,现在您可以将此代码用作片段。
如果您喜欢该项目,请关注,分享和评论!
- 将LCD模块与Arduino连接
- 添加全彩LCD显示屏的最简单方法
- 用Arduino控制伺服电机的超级简单方法
- 将伺服电机连接到Arduino
- 将量子计算机连接到Arduino
- 在连接到STM32的LCD屏幕上显示BLE传感器读数
- 基于Arduino UNO的简单LCD计时器 3次下载
- 将您的中央供暖连接到Arduino
- 将任何VFD串行显示器连接到Arduino的最简单方法
- 采用USB接口的核心电路板Arduino Mega2560 0次下载
- AN-645将HD44780字符LCD连接到MicroConverter®(UC014)
- EE-37:如何将LCD连接到21xx和2106x系列DSP
- 如何将Arduino板连接到的计算机上的30个项目 16次下载
- Arduino Mega 2560原理图 126次下载
- Arduino_Mega2560参数 0次下载
- lcd和led屏幕的区别哪个好 6818次阅读
- 如何将LIU/成帧器连接到双极性或NRZ模式器件 805次阅读
- 如何将柔性传感器与树莓派连接并在LCD屏幕上显示其值 3709次阅读
- 使用一个GPIO数字接口测量温度的简单方法 1020次阅读
- 如何设置Arduino IoT将消息发送到云板显示器 2121次阅读
- 如何使用Arduino和LDR传感器实现LCD液晶屏亮度的自动调节 6529次阅读
- 使用Wii nunchuk手柄连接Arduino控制伺服电机的方法 3697次阅读
- 测试IGBT的简单方法 1.4w次阅读
- dfrobotBluno Mega1280控制器 Arduino兼容简介 2150次阅读
- 如何使用SPICE最简单的方法检查电路潜在稳定性 4068次阅读
- 自制Arduino Mega2560开发板电路图和PCB 4.2w次阅读
- 分析lcd屏幕与oled屏幕之间的区别 4.9w次阅读
- MEGA的AD转换 MEGA48的使用步骤 2864次阅读
- arduino连接显示屏方法详解 4.7w次阅读
- 简单制作LED小夜灯 简单材料简单方法 3.8w次阅读
下载排行
本周
- 1山景DSP芯片AP8248A2数据手册
- 1.06 MB | 532次下载 | 免费
- 2RK3399完整板原理图(支持平板,盒子VR)
- 3.28 MB | 339次下载 | 免费
- 3TC358743XBG评估板参考手册
- 1.36 MB | 330次下载 | 免费
- 4DFM软件使用教程
- 0.84 MB | 295次下载 | 免费
- 5元宇宙深度解析—未来的未来-风口还是泡沫
- 6.40 MB | 227次下载 | 免费
- 6迪文DGUS开发指南
- 31.67 MB | 194次下载 | 免费
- 7元宇宙底层硬件系列报告
- 13.42 MB | 182次下载 | 免费
- 8FP5207XR-G1中文应用手册
- 1.09 MB | 178次下载 | 免费
本月
- 1OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 2555集成电路应用800例(新编版)
- 0.00 MB | 33566次下载 | 免费
- 3接口电路图大全
- 未知 | 30323次下载 | 免费
- 4开关电源设计实例指南
- 未知 | 21549次下载 | 免费
- 5电气工程师手册免费下载(新编第二版pdf电子书)
- 0.00 MB | 15349次下载 | 免费
- 6数字电路基础pdf(下载)
- 未知 | 13750次下载 | 免费
- 7电子制作实例集锦 下载
- 未知 | 8113次下载 | 免费
- 8《LED驱动电路设计》 温德尔著
- 0.00 MB | 6656次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935054次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 78.1 MB | 537798次下载 | 免费
- 3MATLAB 7.1 下载 (含软件介绍)
- 未知 | 420027次下载 | 免费
- 4OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 5Altium DXP2002下载入口
- 未知 | 233046次下载 | 免费
- 6电路仿真软件multisim 10.0免费下载
- 340992 | 191187次下载 | 免费
- 7十天学会AVR单片机与C语言视频教程 下载
- 158M | 183279次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138040次下载 | 免费
评论
查看更多