Skip to content

Instantly share code, notes, and snippets.

@RobolinkTeknoloji
Created January 13, 2021 05:57
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 RobolinkTeknoloji/1f9ce63b973a888d6ae632259c20dc07 to your computer and use it in GitHub Desktop.
Save RobolinkTeknoloji/1f9ce63b973a888d6ae632259c20dc07 to your computer and use it in GitHub Desktop.
16x2 Lcd Ekran Yazı Yazdırma
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2); // Bu kodu kullanırken ekranda yazı çıkmaz ise 0x27 yerine 0x3f yazınız !!
void setup() {
lcd.begin();
}
void loop() {
lcd.setCursor(0,0); // İlk satırın başlangıç noktası
lcd.print("Robolink");
lcd.setCursor(0,1); // İkinci satırın başlangıç noktası
lcd.print("Abone Ol");
delay(2000);
lcd.clear();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment