Manny, I to have the same problem but in my case running the code on a different computer and operating system made no difference. do you know why your change of system made the Wio Terminal work.
I first ran the example blink sketch and the blue LED did blink as expected but when I ran the folowing example code from the Wiki nothing was displayed on the screen.
#include"TFT_eSPI.h"
TFT_eSPI tft;
void setup() {
tft.begin();
tft.setRotation(3);
tft.fillScreen(TFT_RED); // fills entire the screen with colour red
}
void loop() {
}
Any ideas?
John