View Single Post
  #1   Spotlight this post!  
Unread 27-01-2016, 16:18
KingRat KingRat is offline
Registered User
FRC #3055
 
Join Date: Jan 2015
Location: Austin Minnesota
Posts: 1
KingRat is an unknown quantity at this point
C++ .ArcadeDrive() issue

Hey CD our robot is using two motors to power the AndyMark chassis, and we're having an issue with the left and right turning inverted. The code as it sits right now is

void OperatorControl()
{
myRobot.SetSafetyEnabled(true);
while (IsOperatorControl() && IsEnabled())
{
myRobot.ArcadeDrive(stick1);
Wait (0.005);
}
}