#include LiquidCrystal lcd(12, 11, 5, 4, 3, 2); const int switchPin = 6; int switchState = 0; int prevSwitchState = 0; //int reply; void setup() { lcd.begin(16, 2); } void loop() { lcd.clear(); lcd.setCursor(0,0); lcd.print("Cemu ovo sluzi?"); delay(2000); lcd.clear(); lcd.setCursor(0, 1); lcd.print("A jos i ne radi!"); delay(2000); // put your main code here, to run repeatedly: }