Introduce the MultiWheelS (SimpleComposer host) plugin with the MultiVehicleCar definition so fleet auto-sync is driven via Simple dispatch instead of the hand-rolled AGV.FleetGo path. Simplify MultiWheelC.AGV to BasicInterface, drop the obsolete FleetGo helper and FleetStraightMovementTest, wire MultiWheelS into Tutorial.sln, and update RunAndDeploy docs plus add the MultiVehicleAutoSyncReview notes. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
245 B
C#
10 lines
245 B
C#
using MDCSToolBox.Clumsy.AgvInterfaces;
|
|
using MDCSToolBox.Clumsy.MotionControllers;
|
|
|
|
namespace MultiWheelC;
|
|
|
|
public class AGV : BasicInterface
|
|
{
|
|
public override AbstractGeometricController GetController() => new ChassisController().Get();
|
|
}
|