this is my first post which means first program issues!
I am playing about with an DF Robot LCD keypad shield on an arduino duemilanove with ATmega328.
im printing text and then changing the text after 5 seconds, and again at 10, but at 15 seconds i want it to reset and repeat the same steps.
Ive played around with while loops but that wont work as it nothing is set to RESET at 15 seconds, also messed around with different timing libaries, but as it is something that to me sounds so simple but hard to do, there must be an easy way to do it!
// include the library code: #include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
//LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("5995 Pounds");
int var;
unsigned long Starttime;
}