Skip to content

Commit

Permalink
changed folders + fixed erros
Browse files Browse the repository at this point in the history
  • Loading branch information
Twilight420 committed Dec 6, 2023
1 parent ba68672 commit 90d61b9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Commands/ElevatorBaseCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// the WPILib BSD license file in the root directory of this project.


package frc.robot.Commands;
package frc.robot.commands;


import edu.wpi.first.wpilibj2.command.CommandBase;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Commands/IntakeCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.

package frc.robot.Commands;
package frc.robot.commands;

import edu.wpi.first.wpilibj2.command.CommandBase;
import frc.Subsystems.IntakeSubsystem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.

package frc.robot.Commands;
package frc.robot.commands;

import edu.wpi.first.wpilibj2.command.SequentialCommandGroup;
import frc.Subsystems.IntakeSubsystem;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Commands/OutakeCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.

package frc.robot.Commands;
package frc.robot.commands;

import edu.wpi.first.wpilibj2.command.CommandBase;
import frc.Subsystems.IntakeSubsystem;
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/IntakeSequentailCommands.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

import edu.wpi.first.wpilibj2.command.SequentialCommandGroup;
import frc.Subsystems.IntakeSubsystem;
import frc.robot.Commands.IntakeCommand;
import frc.robot.Commands.OutakeCommand;
import frc.robot.commands.IntakeCommand;
import frc.robot.commands.OutakeCommand;


public class IntakeSequentailCommands extends SequentialCommandGroup{
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

import edu.wpi.first.wpilibj2.command.Command;
import edu.wpi.first.wpilibj2.command.InstantCommand;
import frc.robot.Commands.ElevatorBaseCommand;
import frc.robot.commands.ElevatorBaseCommand;
import edu.wpi.first.wpilibj2.command.button.CommandXboxController;
import frc.Subsystems.ElevatorSubsystem;
import frc.Subsystems.IntakeSubsystem;
import frc.robot.Commands.IntakeCommand;
import frc.robot.Commands.OutakeCommand;
import frc.robot.commands.IntakeCommand;
import frc.robot.commands.OutakeCommand;


/**
Expand Down

0 comments on commit 90d61b9

Please sign in to comment.