So based on what you said I am assuming you are doing something along this line
Code:
Victor a_motor = new Victor(1);
a_motor.set(1);
If you wanted to go slower you would want a percentage of the power so for example 25% power
Code:
Victor a_motor = new Victor(1);
a_motor.set(0.25);