File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55package frc .robot ;
66
7+ import edu .wpi .first .epilogue .Epilogue ;
8+ import edu .wpi .first .epilogue .Logged ;
9+ import edu .wpi .first .wpilibj .DataLogManager ;
10+ import edu .wpi .first .wpilibj .DriverStation ;
711import edu .wpi .first .wpilibj .TimedRobot ;
812import edu .wpi .first .wpilibj2 .command .Command ;
913import edu .wpi .first .wpilibj2 .command .CommandScheduler ;
1014
15+ @ Logged
1116public class Robot extends TimedRobot {
1217 private Command m_autonomousCommand ;
1318
1419 private final RobotContainer m_robotContainer ;
1520
1621 public Robot () {
1722 m_robotContainer = new RobotContainer ();
23+ Epilogue .bind (this );
24+ DataLogManager .start ();
25+ DriverStation .startDataLog (DataLogManager .getLog ());
1826 }
1927
2028 @ Override
Original file line number Diff line number Diff line change 44
55package frc .robot ;
66
7+ import edu .wpi .first .epilogue .Logged ;
78import edu .wpi .first .wpilibj2 .command .Command ;
89import edu .wpi .first .wpilibj2 .command .Commands ;
910
11+ @ Logged
1012public class RobotContainer {
1113 public RobotContainer () {
1214 configureBindings ();
Original file line number Diff line number Diff line change 1+ package frc .robot .config ;
2+
3+ public class VisionConfig {}
Original file line number Diff line number Diff line change 1+ package frc .robot .subsystems ;
2+
3+ import edu .wpi .first .wpilibj2 .command .SubsystemBase ;
4+
5+ public class Vision extends SubsystemBase {}
You can’t perform that action at this time.
0 commit comments