728x90
D pin에 다음과 같이 연결한다.
RS - 12, RW - 11, EN - 10
DATA 4~7 - D4~1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include <LiquidCrystal.h> // initialize the library with the numbers of the interface pins LiquidCrystal lcd(12, 11, 5, 4, 3, 2, 1); 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); } | cs |
LiquidCrystal::LiquidCrystal(uint8_t rs, uint8_t rw, uint8_t enable, uint8_t d0, uint8_t d1, uint8_t d2, uint8_t d3)
'Study > Embedded' 카테고리의 다른 글
라즈베리파이, Pi4J를 통한 GPIO 제어 (0) | 2017.06.20 |
---|---|
라즈베리 파이3, 기본 설정 (0) | 2017.06.10 |
아두이노 기초 (0) | 2017.05.25 |
ATMEGA USART-C# App 연동 (0) | 2016.12.12 |
7/21 Atmega128 포트/ win32 api (0) | 2016.07.21 |