We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
FRC2023-Charged-Up/src/main/java/org/bitbuckets/drive/balance/BalanceSetup.java
Line 10 in bfd4074
package org.bitbuckets.drive.balance; import edu.wpi.first.math.controller.PIDController; import org.bitbuckets.lib.IProcess; import org.bitbuckets.lib.ISetup; import org.bitbuckets.lib.control.ProfiledPIDFController; /** * labels: high priority * TODO use the IPidCalculator from mattlib */ public class BalanceSetup implements ISetup<BalanceControl> { @Override public BalanceControl build(IProcess self) { PIDController balanceController = new PIDController(0,0,0); ProfiledPIDFController rotController = new ProfiledPIDFController(0,0,0,0, null); return new BalanceControl(balanceController,rotController); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
FRC2023-Charged-Up/src/main/java/org/bitbuckets/drive/balance/BalanceSetup.java
Line 10 in bfd4074
The text was updated successfully, but these errors were encountered: