Hi there. This is my code:
#include <LiquidCrystal.h>
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
const int redLedPin = 53;
const int redLedPin1 = 52;
void setup()
{
lcd.begin(16, 2);
pinMode(redLedPin, OUTPUT);
digitalWrite(redLedPin, HIGH);
pinMode(redLedPin1, OUTPUT);
digitalWrite(redLedPin1, HIGH);
}
void loop()
{
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Hello");
lcd.print(" Every");
lcd.setCursor(1, 2);
lcd.print("one");
}
And there is a error message:
avrdude: stk500v2_ReceiveMessage(): timeout
avrdude: stk500v2_ReceiveMessage(): timeout
avrdude: stk500v2_ReceiveMessage(): timeout
avrdude: stk500v2_ReceiveMessage(): timeout
avrdude: stk500v2_ReceiveMessage(): timeout
avrdude: stk500v2_ReceiveMessage(): timeout
avrdude: stk500v2_getsync(): timeout communicating with programmer
What I am doing wrong?