我正在尝试使用Arduino Uno,三个按钮和一个ACM1602B-FL-YBW显示器制作摇滚,纸张,剪刀游戏。
使用此显示器进行简单的“Hello World”时遇到问题。
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12,11,10,7,6,5,4);
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);
}
观看视频时,此代码应在显示屏的第一行打印“Hello World”,并从最后一次Arduino重置开始经过秒数。我应该会看到计数器每秒都在进行。
但我只看到“Hello World”和一个数字,一秒后什么都没显示。
每次重置时,我再次看到“Hello world”和自上次重置后经过的秒数,然后再次关闭。
答案 0 :(得分:0)
我找到了问题,对比度太高,无法通过USB线为显示器供电,所以我只是将对比引脚连接到GND。之后没问题。