Honestly primarily formatting.
for example in PROS:
void autonomous() {
motor.move_voltage(12000);
pros::delay(1000); // Move at max voltage for 1 second
motor.move_voltage(0);
}
This is equivalent to VEXCode’s:
void autonomous(void)
{
motor.spin(12.0, voltageUnits::volt);
wait(1000, msec);
motor.spin(0.0, voltageUnits::volt);
}
I use voltageunits because the motor spins faster with voltage and therefore is more powerful than traditional spin commands. You just need to get used to the fact that voltage is between [-12, 12].