-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathDriveSignal.java
44 lines (35 loc) · 1.15 KB
/
DriveSignal.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package com.team254.lib.util;
/**
* A drivetrain command consisting of the left, right motor settings and whether the brake mode is enabled.
*/
public class DriveSignal {
private final double mLeftMotor;
private final double mRightMotor;
private final boolean mBrakeMode;
public DriveSignal(double left, double right) {
this(left, right, false);
}
public DriveSignal(double left, double right, boolean brakeMode) {
mLeftMotor = left;
mRightMotor = right;
mBrakeMode = brakeMode;
}
public static DriveSignal fromControls(double throttle, double turn) {
return new DriveSignal(throttle - turn, throttle + turn);
}
public static final DriveSignal NEUTRAL = new DriveSignal(0, 0);
public static final DriveSignal BRAKE = new DriveSignal(0, 0, true);
public double getLeft() {
return mLeftMotor;
}
public double getRight() {
return mRightMotor;
}
public boolean getBrakeMode() {
return mBrakeMode;
}
@Override
public String toString() {
return "L: " + mLeftMotor + ", R: " + mRightMotor + (mBrakeMode ? ", BRAKE" : "");
}
}