Rotate for code not working

I have been using pro v5 and I have used rotate commands. They have always worked until today. I just got a message saying v5 pro code is no longer supported, and to switch over to visual studio code. What does that mean and does it have anything to do with the commands not working.

void driveForward (int D) {

   frontRight.startRotateFor(vex::directionType::fwd, D*360, vex::rotationUnits::deg);
   FrontLeft.startRotateFor(vex::directionType::fwd, D*360, vex::rotationUnits::deg);
   backRight.startRotateFor(vex::directionType::fwd, D*360 , vex::rotationUnits::deg);
   backLeft.rotateFor(vex::directionType::fwd, D*360 , vex::rotationUnits::deg);     
    middleRight.rotateFor(vex::directionType::fwd, D*360 , vex::rotationUnits::deg);
   middleLeft.rotateFor(vex::directionType::fwd, D*360 , vex::rotationUnits::deg);

}

this code has always worked in the past

1 Like

The “rotate” functions were removed from VEXcode some time ago
But V5 Pro has not been updated for a long time, this last version has the updated sdk.

3 Likes