mirror of
https://github.com/Team4388/2023WayOfTheRobot.git
synced 2026-06-09 00:37:59 -06:00
smart dashboard prints (may need more)
This commit is contained in:
@@ -120,7 +120,10 @@ public class Robot extends TimedRobot {
|
|||||||
* This function is called periodically during operator control.
|
* This function is called periodically during operator control.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void teleopPeriodic() {}
|
public void teleopPeriodic() {
|
||||||
|
SmartDashboard.putBoolean("READY", m_robotContainer.readyForPlacement);
|
||||||
|
SmartDashboard.putNumber("GYRO", m_robotContainer.m_robotSwerveDrive.getGyroAngle());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function is called periodically during test mode.
|
* This function is called periodically during test mode.
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ public class RobotContainer {
|
|||||||
|
|
||||||
private Command toggleClaw = new InstantCommand(() -> m_robotClaw.toggle(), m_robotClaw);
|
private Command toggleClaw = new InstantCommand(() -> m_robotClaw.toggle(), m_robotClaw);
|
||||||
|
|
||||||
private boolean readyForPlacement = false;
|
public boolean readyForPlacement = false;
|
||||||
private Boolean isPole = null;
|
private Boolean isPole = null;
|
||||||
|
|
||||||
private SequentialCommandGroup alignToPole =
|
private SequentialCommandGroup alignToPole =
|
||||||
|
|||||||
Reference in New Issue
Block a user