Okay @877, Can I get you to try this workaround…
timer.setInterval(10000, keep_terminal_awake); // Write to the terminal widget every 10 seconds
void keep_terminal_awake()
{
Blynk.virtualWrite(V1, "\b"); // Write nothing (backspace) to the terminal widget on V1
}
Pete.