LAC Coding Challenge - Snippet #3 - Line 176

PHOTO EMBED

Sun Dec 15 2024 02:13:33 GMT+0000 (Coordinated Universal Time)

Saved by @TechBox #c++

       //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();
content_copyCOPY