×

如何将arduino uno r3与LCD显示器连接

消耗积分:2 | 格式:zip | 大小:0.05 MB | 2023-01-05

王超

分享资料个

描述

LCD 与 Arduino 接口

这是有关如何将 arduino uno r3 与 LCD 显示器连接的快速教程。按照本教程,您可以轻松地将 Arduino UNO R3 与 LCD 显示器连接。

在本教程中,我们将讨论如何将 LCD 显示器与 Arduino UNO R3 连接。LCD 显示器可用于显示一些信息,例如,显示电压、温度、操作状态或仅显示文本,具体取决于项目的目标。

在本教程中,我们将简单地在显示器上打印“Hello Knackminds”。您可以在Knackminds  App上获取此项目或教程所需的所有组件。

将 Arduino UNO R3 与 LCD 显示器连接应遵循哪些步骤?

  • 第 1 步:获取所需的组件
  • 第二步:了解液晶显示器的使用
  • 第 3 步:威廉希尔官方网站 连接
  • 第 4 步:Arduino IDE 编程

第 1 步:所需组件

您可以在 Knackminds App 中获取本教程所需的所有组件。

  • 16 X 2 液晶显示器
  • 阿杜诺乌诺
  • 跳线
  • 10k电位器
  • 1k电阻
  • 面包板
  • USB电缆
  • 带有 Arduino IDE 软件的笔记本电脑或 PC

获得所需的组件了吗? 

让我们了解并将它们联系在一起。 

第二步:了解液晶显示器的使用

液晶显示器由 16 个引脚组成,可以了解每个引脚的工作情况

Pin16:背光地(0V)

  • Pin1:接地(0v)
  • Pin2:电源电压(5v)vcc
  • Pin3: Vo/VEE 用于调节带有电位器电阻的液晶显示器的对比度,通过连接到显示器,您可以通过向前和向后方向旋转电位器旋钮轻松改变对比度级别。
  • Pin4:寄存器引脚,它由两个寄存器组成,分别是数据寄存器和命令寄存器,当逻辑为高时,寄存器引脚自动取数据寄存器,逻辑为低时,自动取命令寄存器的值。
  • Pin5:读写数据,低电平写入寄存器;从寄存器读取高
  • Pin6:Enable 用于将数据发送到数据引脚 en=0 不执行指令,en=1 执行指令是由于逻辑为高。
  • Pin7 至 Pin14:数据引脚(D0 至 D8)
  • Pin15:背光VCC(5V)

第 3 步:威廉希尔官方网站 连接

按照上图连接组件。

The circuit:
* LCD RS pin to digital pin 12
* LCD Enable pin to digital pin 11
* LCD D4 pin to digital pin 5
* LCD D5 pin to digital pin 4
* LCD D6 pin to digital pin 3
* LCD D7 pin to digital pin 2
* LCD R/W pin to ground
* LCD GND pin to ground
* LCD Vcc pin to 5V
* 10K resistor:
* ends to +5V and ground
* wiper to LCD VO pin (pin 3) 

第 4 步:使用 Arduino IDE 软件上传程序 

打开 Arduino 的编辑器。编写以下代码

代码:

#include 
// LiquidCrystal lcd( RS, EN, D4,D5, D6, D7)
LiquidCrystal lcd (12, 11, 5, 4, 3, 2); 
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
}
void loop() {
// set the cursor to column 0, line 0
lcd.setCursor(0, 0);
//print Hello
lcd.print(" Hello!");
// set the cursor to column 0, line 1
lcd.setCursor(0, 1);
//print Knackminds
lcd.print(" Knackminds");
}

将 USB 线连接到 Arduino 并上传代码 

输出:你好!聪明人

理解代码

#include

上面导入了 LiquidCrystal 头文件,其中包含控制 LCD 显示器所需的所有方法。

 LiquidCrystal lcd (12, 11, 5, 4, 3, 2);  

此行有助于初始化 LCD 显示屏。它告诉 Arduino 微控制器关于 LCD 的连接。

void setup() {
lcd.begin(16, 2);
}

设置用于初始化变量、引脚模式等。设置函数在我们的草图(程序)开始时被调用。通过编写 lcd.begin(x, y),您可以设置要在 LCD 上显示的行数和列数。

void loop() {
// set the cursor to column 0, line 0
lcd.setCursor(0, 0);
lcd.print(" Hello!");
// set the cursor to column 0, line 1
lcd.setCursor(0, 1);
lcd.print(" Knackminds");
}

我们通过编写 lcd.setCursor() 来设置光标,并通过调用 lcd.print() 来打印文本;

Arduino显示界面LCD

 

 


声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.obk20.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'如何将arduino uno r3与LCD显示器连接',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.obk20.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);