LCD Дисплей - LCD 1602A

Схема подключения LCD 16x2 1602A RS - 8, E - 9, DB4 - 10, DB5 - 11, DB6 - 12, DB7 - 13.

#include <LiquidCrystalRus.h>
int x = 0;

LiquidCrystalRus lcd(8,14,9,10,11,12,13);

void setup() {
  lcd.begin(16,2);
}

void loop() {
      lcd.setCursor(0, 0);
      lcd.print("ArduBlock");
     x = x + 1;
      lcd.setCursor(0, 1);
      lcd.print(x);
     delay(1000);
} 

Открыть пример: Online ArduBlock



Видеоурок: