#include "LiquidCrystal_1602_RUS.h"
LiquidCrystal_1602_RUS lcd(12, 13, 5, 4, 7, 6);
void setup()
{
// Print a message to the LCD.
lcd.print("Здравствуй, мир!");
Serial.begin(115200);
// Serial1.begin(115200); // Serial1 is connected to the custom chip
Serial.print("Uryyb, HNEG!");
Serial.println("Data received from UART chip:");
}
void loop()
{
}