View Single Post
  #2   Spotlight this post!  
Unread 15-02-2012, 17:08
jwakeman jwakeman is offline
Registered User
FRC #0063 (Red Barons)
Team Role: Mentor
 
Join Date: Jan 2011
Rookie Year: 2010
Location: 16510
Posts: 182
jwakeman is just really nicejwakeman is just really nicejwakeman is just really nicejwakeman is just really nicejwakeman is just really nice
Re: CANJaguar and Encoders

set the control mode:
Code:
void ChangeControlMode(ControlMode controlMode);
set the gains:
Code:
void SetPID(double p, double i, double d);

set the position feedback device to encoder:
Code:
void SetPositionReference(PositionReference reference);
enable control:
Code:
void EnableControl(double encoderInitialPosition = 0.0);
set a reference:
Code:
virtual void Set(float value, UINT8 syncGroup=0);
Reply With Quote