Skip to content

Conversation

@ThadHouse
Copy link
Member

This will let us hide it from intellisense for the FTC Alpha

This will let us hide it from intellisense for the FTC Alpha
@ThadHouse ThadHouse requested review from a team as code owners December 26, 2025 20:10
@github-actions github-actions bot added component: wpilibj WPILib Java component: wpilibc WPILib C++ 2027 2027 target labels Dec 26, 2025
@ThadHouse ThadHouse requested a review from a team as a code owner December 28, 2025 01:35
Copy link
Contributor

@KangarooKoala KangarooKoala left a comment

Choose a reason for hiding this comment

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

Looks like there were some minor button binding swaps.


// Deploy the intake with the X button
m_driverController.X().OnTrue(m_intake.IntakeCommand());
m_driverController.EastFace().OnTrue(m_intake.IntakeCommand());
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
m_driverController.EastFace().OnTrue(m_intake.IntakeCommand());
m_driverController.WestFace().OnTrue(m_intake.IntakeCommand());


// Deploy the intake with the X button
m_driverController.x().onTrue(m_intake.intakeCommand());
m_driverController.eastFace().onTrue(m_intake.intakeCommand());
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
m_driverController.eastFace().onTrue(m_intake.intakeCommand());
m_driverController.westFace().onTrue(m_intake.intakeCommand());

m_driverController
.a()
.and(m_driverController.rightBumper())
.eastFace()
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
.eastFace()
.southFace()

Matches the previous bindings and C++.

m_driverController
.b()
.and(m_driverController.rightBumper())
.southFace()
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
.southFace()
.eastFace()

m_driverController
.a()
.and(m_driverController.leftBumper())
.eastFace()
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
.eastFace()
.southFace()

m_driverController
.b()
.and(m_driverController.leftBumper())
.southFace()
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
.southFace()
.eastFace()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants