最近,我已经将一个典型的16 * 2 LCD(液晶显示器)显示器连接到了我的Arduino Uno,并且已经将所有的引脚都连接了起来。
这是我的联系方式:(首先使用LCD引脚)
1 =接地,2 = + 5v,4 = 11,6 = 12,11 = 5,12 = 4,12 = 3,14 = 2,15 =背光正,16 =背光负
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
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);
}
这是LCD的默认代码,我没有写。
因此,我完成了所有这些操作,当我将其打开时,屏幕上一片空白,什么也没有发生。谁能解释我做错了什么?
1
LCD引脚3连接了什么?它是对比度V0,需要与10 Kohm电位计连接。arduino.cc/en/Tutorial/HelloWorld
—
Mikael Patel