Skip to content

Commit

Permalink
revert myrobot test
Browse files Browse the repository at this point in the history
  • Loading branch information
Starlight220 committed Apr 4, 2024
1 parent 3efb0d0 commit b8cc003
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions myRobot/src/main/java/frc/robot/MyRobot.java
Original file line number Diff line number Diff line change
@@ -5,20 +5,14 @@
package frc.robot;

import edu.wpi.first.wpilibj.TimedRobot;
import edu.wpi.first.wpilibj2.command.PrintCommand;


public class MyRobot extends TimedRobot {
/**
* This function is run when the robot is first started up and should be used for any
* initialization code.
*/
@Override
public void robotInit() {
var c = new PrintCommand("Hello");
c.andThen(new PrintCommand("World!"));
c.andThen(new PrintCommand("Failure!"));
}
public void robotInit() {}

/** This function is run once each time the robot enters autonomous mode. */
@Override

0 comments on commit b8cc003

Please sign in to comment.