Serial Seetron Display

Maybe try clearing it by sending it the clear screen command:

int Instr = 254;
int CLR = 1;

void loop () {

Serial.print(Instr, BYTE);
Serial.print(CLR, BYTE);
Serial.print("Hello ");
delay(1000);
}