Тема: Тест LCD1602
#include <LiquidCrystal.h>
LiquidCrystal lcd(7, 6, 2, 3, 4, 5); // LCD (RS, E, DB4, DB5, DB6, DB7)
// wr === gnd
void setup(){
lcd.begin(16, 2);
lcd.setCursor(3, 0);
lcd.print("ATmega 328");
lcd.setCursor(2, 1);
lcd.print("rcl-radio.ru");
}
void loop(){
}