Pros Millis ()

void opcontrol() {
  std::uint32_t now = pros::millis();
  while (true) {
    // Do opcontrol things
    pros::Task::delay_until(&now, 2);
  }
}
Homeless Hare