코풀 커뮤니티

[3] "Hello, World" 문구 출력하기 - 정한길

과제

정*길

2024-12-26

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

코드에디터

C++
#include <HuemonelabKit.h>

Lcd lcd(0x27);

void setup() {
lcd.begin();
}

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