-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a50e04d
commit 13dcc46
Showing
4 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package frc.robot.maps.subsystems; | ||
|
||
import com.chopshop166.chopshoplib.logging.DataWrapper; | ||
import com.chopshop166.chopshoplib.logging.LoggableMap; | ||
|
||
public class DeepClimbMap implements LoggableMap<DeepClimbMap.Data> { | ||
|
||
public DeepClimbMap() { | ||
} | ||
|
||
@Override | ||
public void updateData(Data data) { | ||
} | ||
|
||
public static class Data extends DataWrapper { | ||
} | ||
|
||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package frc.robot.subsystems; | ||
|
||
import com.chopshop166.chopshoplib.logging.LoggedSubsystem; | ||
|
||
import frc.robot.maps.subsystems.DeepClimbMap; | ||
import frc.robot.maps.subsystems.DeepClimbMap.Data; | ||
import edu.wpi.first.wpilibj2.command.Command; | ||
|
||
public class DeepClimb extends LoggedSubsystem<Data, DeepClimbMap> { | ||
|
||
public DeepClimb(DeepClimbMap deepClimbMap) { | ||
super(new Data(), deepClimbMap); | ||
} | ||
|
||
@Override | ||
public void safeState() { | ||
// TODO Auto-generated method stub | ||
throw new UnsupportedOperationException("Unimplemented method 'safeState'"); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package frc.robot.subsystems; | ||
|
||
import com.chopshop166.chopshoplib.logging.LoggedSubsystem; | ||
|
||
import frc.robot.maps.subsystems.ElevatorMap; | ||
import frc.robot.maps.subsystems.ElevatorMap.Data; | ||
|
||
import edu.wpi.first.wpilibj2.command.Command; | ||
|
||
public class Elevator extends LoggedSubsystem<Data, ElevatorMap> { | ||
|
||
public Elevator(ElevatorMap elevatorMap) { | ||
super(new Data(), elevatorMap); | ||
} | ||
|
||
@Override | ||
public void safeState() { | ||
// TODO Auto-generated method stub | ||
throw new UnsupportedOperationException("Unimplemented method 'safeState'"); | ||
} | ||
|
||
} |