Skip to content

Commit

Permalink
Update libzodiac
Browse files Browse the repository at this point in the history
  • Loading branch information
Blue-Flag-666 committed Nov 1, 2024
1 parent 5dcd06b commit 4235c35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Robot extends TimedRobot implements ZDashboard.Dashboard {
private RobotContainer robotContainer;

protected Robot() {
addPeriodic(robotContainer.chassis::update, 0.05, 0.02);
addPeriodic(() -> robotContainer.chassis.update(), 0.05, 0.02);
}

@Override
Expand Down Expand Up @@ -56,7 +56,7 @@ public void autonomousExit() {

@Override
public void teleopInit() {
dashboard().selectedTab("Teleop");
dashboard().selectedTab("Teleoperated");
}

@Override
Expand Down

0 comments on commit 4235c35

Please sign in to comment.