본문 바로가기
Embedded System/Arduino

[Arduino] 시리얼 LCD 모듈 (Liquid Crystal Display)

by goatlab 2022. 5. 19.
728x90
반응형
SMALL

시리얼 LCD 모듈 (Liquid Crystal Display)

 

#include <Wire.h> // I2C 사용을 위함
#include <hd44780.h> // SCL, SDA 사용시 라이브러리 추가
#include <hd44780ioClass/hd44780_I2Cexp.h>

hd44780_I2Cexp lcd;

void setup(){
	lcd.begin(16,2); // LCD 백라이트 on
}

void loop(){
	lcd.setCursor(2,0); // 커서를 (2,0)에 배치
	lcd.print("Hello world!"); // 커서 위치에 문자 출력
	lcd.setCursor(2,1); // 커서를 (2,1)로 이동
	lcd.print("LCD Tutorial");
}

728x90
반응형
LIST