I am coding my robot for competitions but I cannot figure out how to code a 6 motor drivebase. All of my other mechanisms work except for the drivebase. Any suggestions on how to code one? thank you.
2 motor groups with 3 motors each
Can only be done in Switch, Python, or C++
Switch code is identical to Python code
First, configure motors.
then,
(Switch/Python code)
<motor group name> = MotorGroup(<first motor name>, <second motor name>, <third motor name>)
(C++ code)
<motor group name> = motor_group(<first motor name>, <second motor name>, <third motor name>);
For more info,
https://api.vex.com/v5/home/
2 Likes