#include //LCD: RS;R/W;E;D0-D7 LiquidCrystal lcd(22,24,26,30,31,32,33,34,35,36,37); const int LED = 13; void setup() { // put your setup code here, to run once: lcd.begin(16,2); lcd.clear(); lcd.print("Tomek"); lcd.setCursor(4,2); lcd.print("Txt"); pinMode(LED,OUTPUT); } void loop() { // put your main code here, to run repeatedly: digitalWrite(LED,HIGH); delay(250); digitalWrite(LED,LOW); delay(250); }