Skip to content

Commit

Permalink
Create branch "shuffleboard-zeroing" from "swerve-rewrite"
Browse files Browse the repository at this point in the history
  • Loading branch information
yamamara committed Aug 14, 2024
1 parent 3cd0ca7 commit 2bfde34
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.team4099.robot2023.commands.drivetrain

import com.team4099.robot2023.subsystems.drivetrain.Drivetrain
import edu.wpi.first.wpilibj2.command.Command

class SetZeroCommand(val drivetrain: Drivetrain) : Command() {
init {
addRequirements(drivetrain)
}

override fun initialize() {
}

override fun execute() {
}
}

0 comments on commit 2bfde34

Please sign in to comment.