top of page
Arduino ile LCD Ekran Kullanımı
Gerekli malzemeler:
-
Arduino UNO
-
LCD Display 16x2
-
Jumper Kablo
-
Potansiyometre
-
Devre Şeması
Arduino Kodu:
#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,5,4,3,2);
void setup(){
Serial.begin(9600);
lcd.begin(16,2);
lcd.print("Maker216");
}
void loop(){
lcd.setCursor(0,1);
lcd.print(millis()/1000);
}
bottom of page