#include <Wire.h>
#include <NoiascaLiquidCrystal.h>
#include <NoiascaLiquidCrystal_I2C.h>
const uint8_t i2c_addr = 0x27; // Zamenite sa adresom vašeg LCD ekrana
const uint8_t cols = 20;
const uint8_t rows = 4;
NoiascaLiquidCrystal_I2C lcd(i2c_addr, cols, rows);
void setup() {
lcd.begin();
lcd.backlight();
lcd.setCursor(0, 0);
lcd.print("Привет, мир!"); // "Hello, world!" na ruskom
}
void loop() {
// Nema potrebe za kodom u loop-u za ovaj test
}