MotorGroup

public final class MotorGroup implements Component, List<Motor>

A class that runs multiple motors together as a unit.

Constructors

Link copied to clipboard
public MotorGroup MotorGroup(Motor motors)

Constructs a motor group out of several motor groups.

public MotorGroup MotorGroup(HardwareMap hMap, Double maxRPM, Double TPR, String ids)
public MotorGroup MotorGroup(HardwareMap hMap, Double maxRPM, String ids)
public MotorGroup MotorGroup(HardwareMap hMap, Motor.Type type, String ids)
public MotorGroup MotorGroup(HardwareMap hMap, Double maxRPM, Double TPR, Pair<String, Boolean> ids)
public MotorGroup MotorGroup(HardwareMap hMap, Double maxRPM, Pair<String, Boolean> ids)
public MotorGroup MotorGroup(HardwareMap hMap, Motor.Type type, Pair<String, Boolean> ids)
public MotorGroup MotorGroup(List<Motor> motors)

Properties

Link copied to clipboard
private final Double currentPosition

The average currentPosition that all motors in the group have travelled.

Link copied to clipboard
private final Double distance

The average distance that all motors in the group have travelled.

Link copied to clipboard

Returns the previously set distance per tick. Note that this may not accurately reflect the actual distance per tick of all the motors, since they are independent of each other.

Link copied to clipboard
private final Double distanceVelocity

The average distance velocity of all motors in the group.

Link copied to clipboard

Returns the previously set feedforward. Note that this may not accurately reflect the actual feedforward of all the motors, since they are independent of each other.

Link copied to clipboard

The maximum distance velocity that all motors in the group can achieve.

Link copied to clipboard
public final Double maxRPM

The maximum revolutions per minute that all motors in the group can achieve.

Link copied to clipboard
public final Double maxTPS

The maximum ticks per second velocity that all motors in the group can achieve.

Link copied to clipboard
private Boolean reversed

Whether the motor group is reversed.

Link copied to clipboard
private final List<Angle> rotation

A list of the individual rotations of each motor.

Link copied to clipboard

Returns the previously set run mode. Note that this may not accurately reflect the actual run mode of all the motors, since they are independent of each other.

Link copied to clipboard
private final Double velocity

The average velocity of all motors in the group.

Link copied to clipboard

Returns the previously set PID coefficients. Note that this may not accurately reflect the actual coefficients of all the motors, since they are independent of each other.

Link copied to clipboard

Returns the previously set zero power behavior. Note that this may not accurately reflect the actual zero power behavior of all the motors, since they are independent of each other.

Functions

Link copied to clipboard
public final Double getCurrentPosition()
Link copied to clipboard
public final Double getDistance()
Link copied to clipboard
public final Double getDistancePerTick()

Returns the previously set distance per tick. Note that this may not accurately reflect the actual distance per tick of all the motors, since they are independent of each other.

Link copied to clipboard
public final List<Double> getDistances()

The distance that each motor in the group has travelled.

Link copied to clipboard

The distance velocity of each motor in the group.

Link copied to clipboard
public final Double getDistanceVelocity()
Link copied to clipboard
public final Feedforward getFeedforward()

Returns the previously set feedforward. Note that this may not accurately reflect the actual feedforward of all the motors, since they are independent of each other.

Link copied to clipboard
Link copied to clipboard
public final List<Integer> getPositions()

The currentPosition that each motor in the group has travelled.

Link copied to clipboard
public final List<Angle> getRotation()
Link copied to clipboard
public final Motor.RunMode getRunMode()

Returns the previously set run mode. Note that this may not accurately reflect the actual run mode of all the motors, since they are independent of each other.

Link copied to clipboard
public final List<Double> getVelocities()

The velocity of each motor in the group.

Link copied to clipboard
public final Double getVelocity()
Link copied to clipboard

Returns the previously set PID coefficients. Note that this may not accurately reflect the actual coefficients of all the motors, since they are independent of each other.

Link copied to clipboard

Returns the previously set zero power behavior. Note that this may not accurately reflect the actual zero power behavior of all the motors, since they are independent of each other.

Link copied to clipboard
public final Boolean isReversed()
Link copied to clipboard
public final Unit resetEncoders()

Resets the encoders of all the motors in the group.

Link copied to clipboard
public final MotorGroup reversed()

Reverses the direction of the motor group.

Link copied to clipboard
public final Unit setDistancePerTick(Double distancePerTick)

Sets the distance per tick of all the motors in the group.

Link copied to clipboard
public final Unit setDistanceVelocities(List<Double> velocities)
public final Unit setDistanceVelocities(List<Double> velocities, List<Double> accelerations)

Sets the velocities/accelerations of each motor in encoder ticks per second.

Link copied to clipboard
public final Unit setDistanceVelocity(Double velocity)
public final Unit setDistanceVelocity(Double velocity, Double acceleration)

Sets the velocity/acceleration of all motors in distance units per second.

Link copied to clipboard
public final Unit setFeedforward(Feedforward feedforward)

Sets the feedforward of all the motors in the group.

Link copied to clipboard
public final Unit setPower(Double power)

Sets the percentage of power/velocity of all motors in the range [-1.0, 1.0].

Link copied to clipboard
public final Unit setPowers(List<Double> powers)

Sets the percentage of power/velocity of each motor in the range [-1.0, 1.0].

Link copied to clipboard
public final MotorGroup setReversed(Boolean reversed)
Link copied to clipboard
public final Unit setRPM(Double rpm)

Sets the velocity of all motors in revolutions per second.

Link copied to clipboard
public final Unit setRunMode(Motor.RunMode runMode)

Sets the distance per tick of all the motors in the group.

Link copied to clipboard
public final Unit setTickVelocities(List<Double> velocities)
public final Unit setTickVelocities(List<Double> velocities, List<Double> accelerations)

Sets the velocities/accelerations of each motor in encoder ticks per second.

Link copied to clipboard
public final Unit setTickVelocity(Double velocity)
public final Unit setTickVelocity(Double velocity, Double acceleration)

Sets the velocity/accleration of all motors in encoder ticks per second.

Link copied to clipboard
public final Unit setVeloCoefficients(PIDCoefficients veloCoefficients)

Sets the distance per tick of all the motors in the group.

Link copied to clipboard
public final Unit setZeroPowerBehavior(Motor.ZeroPowerBehavior zeroPowerBehavior)

Sets the distance per tick of all the motors in the group.

Link copied to clipboard
public Unit update()

Updates RunMode.RUN_USING_ENCODER. Running this method is not necessary for RunMode.RUN_WITHOUT_ENCODER.