Skip to content

Instantly share code, notes, and snippets.

@RobolinkAkademi
Last active October 28, 2019 07:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RobolinkAkademi/a82bcadb95b381ccd08bb540ee41f2f8 to your computer and use it in GitHub Desktop.
Save RobolinkAkademi/a82bcadb95b381ccd08bb540ee41f2f8 to your computer and use it in GitHub Desktop.
tum_yil_icin_arduino_mufredati_15
#include <LiquidCrystal_I2C.h> //kütüphane tanımlanması
LiquidCrystal_I2C lcd(0x3F,16,2);//I2C modülün adresi,satır sütun bilgileri
void setup()
{
lcd.begin();//lcd ekranın başlatılması
}
void loop()
{
lcd.setCursor(0,0);//ilk satır ilk sütuna
lcd.print("MERHABA DUNYA");// merhaba dünya yaz
delay(2000);//2000 mili saniye(2 saniye) bekle
lcd.clear();// ekranı temizle
//burası bir döngü olduğu için ekran temizlendikten sonra
//tekrar üstteki kodlar çalıştırılacak, yazı yazma işlemi tekrarlanacak.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment