Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix runtime errors on develop #30

Merged
merged 1 commit into from
Mar 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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