I’m running the basic x-drive code that I found on a related thread. Here it is
task main()
{
while (1 == 1)
{
motor[frontRight] = vexRT[Ch2] - vexRT[Ch4] - vexRT[Ch1];
motor[backRight] = vexRT[Ch2] - vexRT[Ch4] + vexRT[Ch1];
motor[frontLeft] = vexRT[Ch2] + vexRT[Ch4] + vexRT[Ch1];
motor[backLeft] = vexRT[Ch2] + vexRT[Ch4] - vexRT[Ch1];
}
}
So only the back left motor doesn’t work, and I’m not sure what’s wrong with the code, thanks!