Splash screen tekst

Ja, som det kan ses af nedenstående, så skriver jeg nogle gange på Engelsk.
Teksten til højre for // er en kort beskrivelse af hvad hver linje gør.

/*
 * Making own Splashscreen text.
 *
 * Clearing the Display and setting the brightness level.
 * Writing the two lines and saving to memory.
 */

void setup()  // Run once, when the sketch starts
{
  Serial.begin(9600);  // Setting communication up at 9600 bps on TX pin at Arduino Uno

  Serial.write(0xFE);  // Special Command Extended
  Serial.write(0x01);  // Clear Display
  delay(10);  // Delay for clearing the Display

  Serial.write(0x7C);  // Special Command
  Serial.write(157);  // Backlight brightness level (128 = Off, 140 = 40%, 150 = 73%, 157 = Fully On)
  delay(10);  // Delay for changing Backlight brightness

  Serial.print("Name Phone ");  // Display read out line 1, must be 20 char. long
  Serial.print("Email ");  // Display read out line 2, must be 20 char. long

  Serial.write(0x7C);  // Special Command
  Serial.write(0x0A); // Saving splash screen
}