lazurete에서lcd
lazurete로lcd를 해봤어요.
사진.
회로도
샘플 코드
void setup()
{
Serial.begin(115200);
lcd_begin(16, 2, 1);
lcd_setCursor(0, 0);
lcd_print("start!");
lcd_setCursor(0, 1);
lcd_print("hello, world!");
}
void loop()
{
static int i = 0;
uint8_t msg[16];
Print.init(msg, sizeof(msg));
if (i < 10)
{
Print.p("0");
}
Print.l(i, DEC);
lcd_setCursor(0, 1);
lcd_print(msg);
delay(500);
i++;
if (i >= 100) i = 0;
}
이상.
Reference
이 문제에 관하여(lazurete에서lcd), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ohisama@github/items/f6895b8789d138a7c6b1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)