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