private CANSparkMax driveRightMotor1 = new CANSparkMax(DriveConstants.kRightMotorFront, MotorType.kBrushed);
private CANSparkMax driveRightMotor2 = new CANSparkMax(DriveConstants.kRightMotorRear, MotorType.kBrushed);
private CANSparkMax driveLeftMotor1 = new CANSparkMax(DriveConstants.kLeftMotorFront, MotorType.kBrushed);
private CANSparkMax driveLeftMotor2 = new CANSparkMax(DriveConstants.kLeftMotorRear, MotorType.kBrushed);
How can i create a motor controller group for CANSparkMax.
Thanks for your help!