Skip to content

Commit

Permalink
linting in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
Merridew1 committed Jan 27, 2024
1 parent 6d3f669 commit 9ca6633
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,18 @@ public final class Constants {
* Motor CAN id's.
*/
public static final class Motors {
/**
* Class for elevator and wrist motor constants
*/
public static final class ElevatorWrist {
public static final int TALON_ID = -1;
public static final int NEO_ID = -1;
}
}

/**
* Class for elevator and wrist constants
*/
public static final class ElevatorWristConstants {
public static final int ELEVATOR_ENC_CHANNEL_A = -1;
public static final int ELEVATOR_ENC_CHANNEL_B = -1;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package frc.robot.subsystems.elevatorWrist;
package frc.robot.subsystems.elevator_wrist;

import org.littletonrobotics.junction.Logger;
import edu.wpi.first.math.controller.ArmFeedforward;
Expand All @@ -7,6 +7,7 @@
import edu.wpi.first.math.trajectory.TrapezoidProfile;
import edu.wpi.first.wpilibj2.command.Subsystem;
import frc.robot.Constants;
import frc.robot.subsystems.elevatorWrist.ElevatorWristInputsAutoLogged;

/**
* Elevator and Wrist Subsystem
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package frc.robot.subsystems.elevatorWrist;
package frc.robot.subsystems.elevator_wrist;

import org.littletonrobotics.junction.AutoLog;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package frc.robot.subsystems.elevatorWrist;
package frc.robot.subsystems.elevator_wrist;


import com.ctre.phoenix6.controls.VoltageOut;
Expand Down

0 comments on commit 9ca6633

Please sign in to comment.