-3
// include the library code:
#include <LiquidCrystal.h>
const int rs = 13, en = 12, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// Turn on the display:
lcd.display();
delay(500);
}
아두 이노 보드를 작동하지 : 아두 이노 C 코드
내가 여러 번 시도하고 나를 위해 작동하지 않을 것입니다.
내 결과는 :
수행하려는 작업과 오류의 자세한 내용을 입력하십시오. 외부 이미지 링크가 사라지고 질문을 쓸데없이 남겨 둘 수 있습니다. – roelofs
''나를 위해 효과가 없을 것입니다. ''이게 무슨 뜻입니까? 결과는 무엇입니까 (질문에 편집 할 수 있습니다)! –