-
Notifications
You must be signed in to change notification settings - Fork 4
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
New Glacier Peak Harvester #87
base: master
Are you sure you want to change the base?
Conversation
@@ -369,6 +389,9 @@ public void teleopPeriodic() | |||
|
|||
if (mControlBoard.readButton(Buttons.GRABBER_FAST_OPEN)) | |||
{ | |||
mClimber.setWantedState(Climber.WantedState.HOLD); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dont set climber state
@@ -362,7 +393,7 @@ public synchronized void stop() | |||
{ | |||
mSystemState = SystemState.DISABLING; | |||
mWantedState = WantedState.DISABLE; | |||
mSolenoid.set(kSolenoidClose); | |||
mSolenoid1.set(kSolenoidClose); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also set solenoid 2
@@ -52,7 +52,8 @@ | |||
public static final int kScissorBrakeSolenoidId = 2; //PCM 0 | |||
public static final int kGrabberSetupSolenoidId = 3; //PCM 0 | |||
public static final int kGrabberSolenoidId = 4; //PCM 0 | |||
public static final int kHarvesterSolenoidId = 5; //PCM 0 | |||
public static final int kHarvesterSolenoid1Id = 5; //PCM 0 | |||
public static final int kHarvesterSolenoid2Id = 8; //PCM 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
verify
@@ -40,7 +40,7 @@ | |||
public static final int kHarvesterLeftMotorId = kUseTestbedConstants ? 18 : 8; | |||
public static final int kHarvesterRightMotorId = kUseTestbedConstants ? 16 : 9; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
verify
No description provided.