-
Notifications
You must be signed in to change notification settings - Fork 2
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
Feeder subsystem refinement #74
base: master
Are you sure you want to change the base?
Conversation
@@ -126,6 +126,10 @@ public void emptyFeeder(){ | |||
feederTalon.set(ControlMode.Position, 6*FEEDERSUBSYSTEM_INCREMENT_TICKS.get()); | |||
} | |||
|
|||
public void stopFeeder(){ | |||
feederTalon.set(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.
Can we make 0 into a CONSTANT?
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.
Abhi is this still needed? Can you get it done today? |
After discussion we don't believe this is needed now. Please review what is on master and provide input if you see anything |
Added code to stop the motor at the end of EmptyFeeder command.