BLYNK_DEBUG print to terminal

Ah, yes… The Code… well… sorta…

I just could not get a clean ASCII transfer from Debug to the terminal… and I had too much going on (in the app) to keep dumping my Debug back to the app, but I still wanted something to start the terminal off with… so I improvised (cheated? :blush:)

Are you ever going to show how you did it?

  Blynk.virtualWrite(V1, "\n\n");
  Blynk.virtualWrite(V1, "    ___  __          __ \n");
  Blynk.virtualWrite(V1, "   / _ )/ /_ _____  / /__ \n");
  Blynk.virtualWrite(V1, "  / _  / / // / _ \\/  '_/ \n");  // to display a backslash, print it twice
  Blynk.virtualWrite(V1, " /____/_/\\_, /_//_/_/\\_\\ \n");  // to display a backslash, print it twice
  Blynk.virtualWrite(V1, "        /___/ v");
  Blynk.virtualWrite(V1, BLYNK_VERSION" on "BLYNK_INFO_DEVICE"\n\n");
  Blynk.virtualWrite(V1, "                 Project By Gunner -\n");
  Blynk.virtualWrite(V1, "Here to Kick ASCII and Chew Bubblegum\n");
  Blynk.virtualWrite(V1, "... and I am all out of Bubblegum!\n");
  terminal.flush();

And yes, I haven’t gotten around to properly outputting RTC to the display… just a lazy code monkey :stuck_out_tongue: