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
'Embedded System > Arduino' 카테고리의 다른 글
[Arduino] LED Matrix Editor (0) | 2022.05.26 |
---|---|
[Arduino] 서보 모터 (Servo Motor) (0) | 2022.05.19 |
[Arduino] 아두이노 스케치 기본 구조 (0) | 2022.05.19 |
[Arduino] 시리얼 통신 (Serial communication) (0) | 2022.03.29 |
[Arduino] 브레드보드 (Breadboard) (0) | 2022.03.29 |