I2C LCD
About Lesson

기본설정

  1. 아두이노 설치 및 환경설정이 완료된 상태여야 합니다.

2. 라이브러리는 하기 버튼을 눌러 다운로드하고 설치하세요

3. 아래 소스코드를 보드설정-컴파일-업로드 과정을 진행 후 실행하세요

소스 코드

코드설명 : LCD에 hello, world를 출력합니다.

                 LCD에 출력이 안되는 경우 해경방법

                  1.  I2C주소검색 후 해당 코드의 I2C주소를 변경합니다. 
                  2. LCD 뒷편의 가변저항을 돌려 LCD의 밝기를 조절합니다.

				
					#include <Wire.h> 
#include <LiquidCrystal_I2C.h>

// Set the LCD address to 0x27 for a 16 chars and 2 line display
LiquidCrystal_I2C lcd(0x27, 16, 2);

void setup()
{
	// initialize the LCD
	lcd.begin();

	// Turn on the blacklight and print a message.
	lcd.backlight();
	lcd.print("Hello, world!");
}

void loop()
{
	// Do nothing here...
}