Skip to content

Commit

Permalink
Fix GRTNetworkTableEntry and TurretSubsystem (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
ky28059 authored Mar 8, 2022
1 parent 7b32b34 commit c8916d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,12 @@ public GRTNetworkTableEntry(NetworkTableEntry tableEntry) {
public void update() {
switch (this.type) {
case GET:
buffer = tableEntry.getValue();
buffer = tableEntry.getValue().getValue();
break;
case SET:
tableEntry.setValue(buffer);
break;
}
;
};
}

public Object getValue() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/subsystems/TurretSubsystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public enum ModuleState {
// TODO: measure these, add constants
private double theta;
private double r;
private Pose2d previousPosition;
private Pose2d previousPosition = new Pose2d();

private double desiredFlywheelSpeed = 30.0;
private double desiredTurntablePosition = 0.0;
Expand Down

0 comments on commit c8916d9

Please sign in to comment.