최근에 일반적인 16 * 2 LCD (액정 디스플레이) 디스플레이를 Arduino Uno에 연결하고 모든 핀을 연결했습니다.
내 연결은 다음과 같습니다. (LCD 핀 우선)
1 = GND, 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의 기본 코드이며 작성하지 않았습니다.
그래서 나는이 모든 작업을 수행했으며 화면을 켜면 아무것도 나타나지 않고 아무 일도 일어나지 않습니다. 아무도 내가 잘못한 것을 설명 할 수 있습니까?