The controller button, The motor that spins, the direction the motor spins
#inclue "vex.h"
using namespace vex;
using signature = vision::signature;
using code = vision::code;
brain Brain;
controller Controller1 = controller(primary);
motor_group LeftDriveSmart = motor_group(
);
motor_group RightDriveSmart = motor_group(
);
drivetrain Drivetrain = drivetrain(LeftDriveSmart, RightDriveSmart, 319.19, 295, 40, mm, 1);
bool RemoteControlCodeEnabled = true;
bool DrivetrainLNeedsToBeStopped_Controller1 = true;
bool DrivetrainRNeedsToBeStopped_Controller1 = true;
int rc_auto_loop_function_Controller1() {
while(true) {
    if(RemoteControlCodeEnabled) {
   }
 wait(20, msec);
 }
 return 0;
}
using namespace vex;
extern brain Brain;
extern controller Contoller1;
extern drivetrain Drivetrain;