找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 5409|回复: 1

如何用Arduino查询LCD1602液晶屏 I2C的初始地址是0x3f还是0x27?

[复制链接]

198

主题

13

回帖

1027

积分

管理员

积分
1027
发表于 2019-4-8 16:18:34 | 显示全部楼层 |阅读模式
经过本人测试有效,特地写出教程供广大爱好者阅读。
第一步:.连线arduino和LCD1602显示器
LCD1602—–arduino uno
GND ———— GND
VCC ———— 5V
SDA ———— A4
SCL ———— A5
第二部,上传程序#include <Wire.h> void setup(){  Wire.begin();  Serial.begin(9600);  Serial.println("\nI2C Scanner");}void loop(){  byte error, address;  int nDevices;  Serial.println("Scanning...");  nDevices = 0;  for (address = 1; address < 127; address++ ){    // The i2c_scanner uses the return value of    // the Write.endTransmisstion to see if    // a device did acknowledge to the address.    Wire.beginTransmission(address);    error = Wire.endTransmission();    if (error == 0){      Serial.print("I2C device found at address 0x");      if (address < 16)        Serial.print("0");      Serial.print(address, HEX);      Serial.println(" !");      nDevices++;    }else if (error == 4){      Serial.print("Unknow error at address 0x");      if (address < 16)        Serial.print("0");      Serial.println(address, HEX);    }  }  if (nDevices == 0)    Serial.println("No I2C devices found\n");  else    Serial.println("done\n");  delay(5000); // wait 5 seconds for next scan}第三部,打开串口监视
通过上面我们已经可以看到扫描的结果了。

回复

使用道具 举报

198

主题

13

回帖

1027

积分

管理员

积分
1027
 楼主| 发表于 2019-4-8 16:25:08 | 显示全部楼层
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|小钉锤论坛 粤ICP备18149537号-2

GMT+8, 2024-11-24 13:58 , Processed in 0.050685 second(s), 20 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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