Faster way to print to terminal widget

This below takes about 5 seconds to print on the terminal widget. Can I somehow make it print faster?

  Blynk.virtualWrite(V8, "clr");
  Blynk.virtualWrite(V8, "\n");
  Blynk.virtualWrite(V8, myStr8[1]);
  Blynk.virtualWrite(V8, "\n");
  Blynk.virtualWrite(V8, myStr7[1]);
  Blynk.virtualWrite(V8, "\n");
  Blynk.virtualWrite(V8, myStr6[1]);
  Blynk.virtualWrite(V8, "\n");
  Blynk.virtualWrite(V8, myStr5[1]);
  Blynk.virtualWrite(V8, "\n");
  Blynk.virtualWrite(V8, myStr4[1]);
  Blynk.virtualWrite(V8, "\n");
  Blynk.virtualWrite(V8, myStr3[1]);
  Blynk.virtualWrite(V8, "\n");
  Blynk.virtualWrite(V8, myStr2[1]);
  Blynk.virtualWrite(V8, "\n");
  Blynk.virtualWrite(V8, myStr1[1]);
  Blynk.virtualWrite(V8, "\n");

There have been several other topics on this subject.

If you look at the some of the Blynk example sketches that will say this…

  // You can send any value at any time.
  // Please don't send more that 10 values per second.

Your code is trying to send 18 values one after another, and without seeing what the rest of the code is doing you may well be compounding this issue elsewhere.

The Blynk server responds to this flood of data by buffering it, hence the delay.

A better approach may be to build a string of data and send it as a single virtualWrite, but once again it’s difficult to tell when you just post snippets of code.

Pete.