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

Storage Logic with Rotate Turret Command #13

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open

Storage Logic with Rotate Turret Command #13

wants to merge 15 commits into from

Conversation

Basil070104
Copy link
Contributor

I have also created the Xbox controller, and I have started to try mapping ht buttons to respective commands. If you could look over that also that would be great.

ballCount = 3;
}

public void spinBoth(){
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably don't need these methods, as someone else calling

spinLowerMotor() spinUpperMotor()

Isn't really burdensome, and it's just as clear.

}

public void spinLowerMotor() {
lowerMotor.set(ControlMode.PercentOutput, 0.5);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These should be constants instead of number literals.


public void stopUpperMotor() {
upperMotor.stopMotor();
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There should probably also be a way to reverse the motors, in case of the inevitable jams.

}

@Override
public void execute() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this needs more work, consider that this method will likely be called every 20ms during the match.

Since this clears all remembered state as soon as it starts, this will cause the conveyors to behave erratically, because they base their movement solely on the current value of the sensors.

Instead, you need to set "goals" for it achieve, effectively. As in, "once I see this, move till this happens," and not to forget the previous state, since that's invaluable in determining what's going on in the robot, since we don't have continuous tracking of the balls.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants