We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e973a6a commit 5330f85Copy full SHA for 5330f85
1 file changed
src/main/java/frc/robot/Robot.java
@@ -15,6 +15,7 @@
15
16
import edu.wpi.first.wpilibj.DriverStation;
17
import edu.wpi.first.wpilibj.Threads;
18
+import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard;
19
import edu.wpi.first.wpilibj2.command.Command;
20
import edu.wpi.first.wpilibj2.command.CommandScheduler;
21
import org.ironmaple.simulation.SimulatedArena;
@@ -100,6 +101,7 @@ public void robotPeriodic() {
100
101
// This must be called from the robot's periodic block in order for anything in
102
// the Command-based framework to work.
103
CommandScheduler.getInstance().run();
104
+ SmartDashboard.putData(CommandScheduler.getInstance());
105
106
// Return to normal thread priority
107
Threads.setCurrentThreadPriority(false, 10);
0 commit comments