Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <LiquidCrystal.h> //Dołączenie bilbioteki
  2. LiquidCrystal lcd(2, 3, 4, 5, 6, 7); //Informacja o podłączeniu nowego wyświetlacza
  3.  
  4. void setup() {
  5.   lcd.begin(16, 2); //Deklaracja typu
  6.   lcd.setCursor(0, 0); //Ustawienie kursora
  7.   lcd.print("Kurs Arduino"); //Wyświetlenie tekstu
  8.   lcd.setCursor(0, 1); //Ustawienie kursora
  9.   lcd.print("Na Forbocie!"); //Wyświetlenie tekstu
  10. }
  11.  
  12. void loop() {
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement