Code: #pragma config(Motor, port1, frontR, tmotorNormal, openLoop) #pragma config(Motor, port2, backR, tmotorNormal, openLoop) #pragma config(Motor, port3, frontL, tmotorNormal, openLoop, reversed) #pragma config(Motor, port4, backL, tmotorNormal, openLoop, reversed) //*!!Code automatically generated by 'ROBOTC' configuration wizard !!*//
task main() { bVexAutonomousMode = false; while (1==1); motor[frontR] = vexRT(Ch3); motor[backR] = vexRT(Ch3); motor[frontL] = vexRT(Ch2); motor[backL] = vexRT(Ch2);
} |