Following up and hoping for a bit of help getting my Wio Terminal and Grove Vision sensor up and running. I’ve uploaded a custom model to the Grove Vision sensor. And I ran the object_detection sketch included in the Grove AI examples and it compiled and uploaded fine. But the screen on my Wio Terminal remains black.
A simple sketch like this works fine, though:
#include “TFT_eSPI.h”
TFT_eSPI tft;
void setup() {
tft.begin();
tft.setRotation(3);
tft.fillScreen(TFT_YELLOW);
tft.drawLine(0,0, 100,100, TFT_BLACK);
}
void loop() {
// put your main code here, to run repeatedly:
}