If you want to create something really awesome to show off to your colleagues or friends, you definitely need a super cool logo for your project. Online, there are plenty of free tools for this purpose, and we've put together a list of them for you:
In the demo below, you’ll see that the logo nicely appears above the prompt after startup. Everything else works just the same as before.
Live Demo
 
Whole Code
 
 
 
const char logo[] =
 
    "   _____ __         ____          _             __            \r\n"
    "  / ___// /_  ___  / / /___ ___  (_)___  ____ _/ /_____  _____\r\n"
    "  \\__ \\/ __ \\/ _ \\/ / / __ `__ \\/ / __ \\/ __ `/ __/ __ \\/ ___/\r\n"
    " ___/ / / / /  __/ / / / / / / / / / / / /_/ / /_/ /_/ / /    \r\n"
    "/____/_/ /_/\\___/_/_/_/ /_/ /_/_/_/ /_/\\__,_/\\__/\\____/_/     \r\n"
    "\r\n"
    "Visit on GitHub: https://www.shellminator.org/html/index.html\r\n\r\n"
 
;
 
void setup(){
 
    Serial.begin(115200);
 
    
    shell.clear();
 
    
    shell.attachLogo( logo );
 
    
    shell.begin( "arnold" );
 
 
}
 
void loop(){
 
    
    shell.update();
 
}