#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C object(0x27, 16, 2);
void setup() {
// put your setup code here, to run once:
object.init();
object.backlight();
object.print("Grasz w RL?");
}
void loop() {
// put your main code here, to run repeatedly:
}