// include the library code:
#include <LiquidCrystal.h>
// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 13, en = 12, d4 = 11, d5 = 10, d6 = 9, d7 = 8;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
// set up the LCD`s number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.setCursor(2, 0);
lcd.print("Mekatronika");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row, since counting begins with o);
lcd.setCursor(8, 1);
// print the number of seconds since reset:
lcd.print(millis() / 100);
}