//Display "Super Secret Message"
lcd.clear();
// Set the LCD cursor to the second line, 4th position
lcd.setCursor(4,1);
// Write 'Super Secret' beginning at that location
lcd.print("Super Secret");
// Move cursor to the third line, 8th position
lcd.setCursor(7,2);
// Write 'Message' beginning at that location
lcd.print("Message");
// Display the message for 5-seconds
delay(5000);
// Clear the display to prepare for the next time update
lcd.clear();
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter