코풀 커뮤니티

LCD - "Hello, World" 문구 출력하기 - 문윤성

과제

문*성

2024-12-27

post-image
post-image
post-image
post-image
post-image
post-image
post-image
post-image
post-image

코드에디터

언어 선택
#include <HuemonelabKit.h>

Lcd lcd(0x27);

void setup() {
lcd.begin(); // clear, init, backlight, setCursor(0,0)
}

void loop() {
lcd.setCursor(0,0);
lcd.print("hello world!");
}
입력
실행 결과
이 곳에 결과가 표시됩니다.
computerlogo