Help LCD clear

You have to send an escape code (0x7C) followed by a clear screen command (0x00).
Serial.print(0x7C,BYTE);
Serial.print(0x00,BYTE);

You could use lcd.clearLCD(); if you are using the library provided by sparkfun.

Don