View Single Post
  #6   Spotlight this post!  
Unread 26-01-2011, 22:55
drakesword drakesword is offline
Registered User
AKA: Bryant
FRC #0346 (Robohawks)
Team Role: Mentor
 
Join Date: Jan 2006
Rookie Year: 2004
Location: USA
Posts: 200
drakesword is on a distinguished road
Re: Slowing Down Motor On Java

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);
Reply With Quote