@jpearman, It seems like the buttons on the website you linked don’t have any hyper-link attributed with them.
Is this supposted to happen?
I would watch your tone if I were you. I think what he was trying to direct you to the coding reseorce library, which I cannot find due to the afformentioned broken links,
To answer your questions (and I would highly encourage you to read the artical yourself), a Drivetrain is a combination of motor groups that has defferent functions to drive (Drivetrain.drive(FORWARD)), turn (Drivetrain.turn(LEFT) // I'm not sure if LEFT is correct, drive a certin distance (Drivetrain.drive_for(FORWARD, 100, mm)), turn to an angle (Drivetrain.turn_for(LEFT, 90, DEGREES), and accomplish other tasks.
A motor group is a group of motors. I think it basically pairs up 2 or more motors together and applies the same wattage to them. The code for motorgroups works exactly the same as for normal motors, and you can create motor groups with 3+ motors using this method:
I hope this helps!
