Page 174 - 최강 아두이노 퍼스트 참고서
P. 174
#include <LiquidCrystal.h>
// Connections:
// RS (LCD pin 4) to Arduino pin 12
// RW (LCD pin 5) to Arduino pin 11
// Enable (LCD pin 6) to Arduino pin 10
// LCD pin 15 to Arduino pin 13 // LCD
pins d0,d1,d2,d3 사용 안 함.
// LCD pins d4, d5, d6, d7 to Arduino pins 5, 4, 3, 2 //
// 아두이노 13 번 핀에 10 K 가변 저항을 연결합니다.
const int BACK_LIGHT = 13; // Pin 13 will control the backlight
LiquidCrystal g_lcd(12, 11, 10, 5, 4, 3, 2);
void setup()
{
pinMode(BACK_LIGHT, OUTPUT); digitalWrite(BACK_LIGHT,
HIGH); // Turn backlight on.
// Replace 'HIGH' with 'LOW' to turn it off.
g_lcd.clear(); // Start with a blank screen g_lcd.setCursor(0, 0);
// Set the cursor to the beginning g_lcd.print("Hello,"); g_lcd.setCursor(0,
1); // Set the cursor to the next row g_lcd.print("Have a nice day");
}
void loop()
{
}
174