Skip to content

Commit

Permalink
Renamed ProtoIntake to Intake
Browse files Browse the repository at this point in the history
  • Loading branch information
bit-turtle committed Jan 25, 2024
1 parent 7c7a073 commit a97c2a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Intake(
companion object {
fun createIntake(): Intake {
val motor = createSparkMax(
"ProtoUndertaker Motor",
"Inkake Motor",
IntakeConstants.MOTOR_ID,
NEOEncoder.creator(
1.0,
Expand All @@ -49,7 +49,7 @@ class Intake(
slaveSparks = mapOf(Pair(IntakeConstants.FOLLOLWER_ID, IntakeConstants.FOLLOWER_INV))
)

return ProtoUndertaker(motor)
return Intake(motor)
}
}
}

0 comments on commit a97c2a1

Please sign in to comment.