SD card image not printing

So I’ve been trying for a while and failing to get both a png and a BMP file to print onto the brain screen from the SD card but I cannot get it to work. He is my main function that contains the single line that I’m pretty sure is meant to just do it.

int main(){
  // Initializing Robot Configuration. DO NOT REMOVE!
  vexcodeInit();
  Brain.setTimer(0, seconds);
  std::cout << "SDcard -->";
  std::cout << Brain.SDcard.isInserted();
  std::cout << " || ";
  Brain.Screen.drawImageFromFile("Bird.bmp", 0, 0);
  //wait(2, seconds);  <-- Tried giving it two seconds to do it, didn't work
  Competition.drivercontrol(User);
  Competition.autonomous(Autonomous);
}

I tried using this post to help fix it but no dice.

1 Like