-
Notifications
You must be signed in to change notification settings - Fork 0
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
Loki shooter + Coral Funnel Subsystem #1
Conversation
Co-authored-by: Calvin Ye <cye2007@users.noreply.github.com> Co-authored-by: Jerry Jiang <JerryJiang531@users.noreply.github.com> Co-authored-by: LinAndy10 <LinAndy10@users.noreply.github.com> Co-authored-by: Weifen Chen <WennieC@users.noreply.github.com> Co-authored-by: Rahul Deb <rahuldeb.usa@gmail.com>
only calls set rpm at the end
Moved the shooter rpm commands to the abstract class
… targetRPM Co-authored-by: Calvin Ye <cye2007@users.noreply.github.com> Co-authored-by: sixuanl <sixuanl@users.noreply.github.com> Co-authored-by: ryanyu32 <ryanyu32@users.noreply.github.com> Co-authored-by: metereel <Material-Energy@users.noreply.github.com> Co-authored-by: LinAndy10 <LinAndy10@users.noreply.github.com>
Co-authored-by: Weifen Chen <WennieC@users.noreply.github.com> Co-authored-by: Rahul Deb <rahuldeb.usa@gmail.com>
Readded stopping functionality back to funnel default command renamed changeState to runState in default command for clarity removed this in all methods changed detectCurrentSpike to private
|
||
@Override | ||
public void initialize(){ | ||
if (shooter.hasAlgae()){ |
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.
remove algae scoring front/back
|
||
// Set values later | ||
public interface Shooter { | ||
int MOTOR = 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.
shooter = rename to receiver port
funnel = rename to IR
public interface Settings {} | ||
public interface Settings { | ||
public interface Shooter { | ||
SmartNumber ALGAE_FRONT_SPEED = new SmartNumber("Algae Target Speed", 1); |
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.
no algae front/back needed
|
||
public interface Funnel { | ||
SmartNumber MOTOR_SPEED = new SmartNumber("Funnel Speed", 0.0); | ||
double BB_DEBOUNCE = 0.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.
rename to ir debounce
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.
look at comments
Changed motorBeam on shooter to receiver Changed motorBeam on funnel to ir Removed front and back shooting for algae, changed to just shooting Fixed bug where coral acquired in the wrong direction
GG |
No description provided.