From a97c2a1fd5bfbc855d55422c18dab27aac1465a5 Mon Sep 17 00:00:00 2001 From: Michael Spears Date: Thu, 25 Jan 2024 17:04:36 -0500 Subject: [PATCH] Renamed ProtoIntake to Intake --- src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt b/src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt index 1490c4f..cdb3458 100644 --- a/src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt +++ b/src/main/kotlin/frc/team449/robot2024/subsystems/Intake.kt @@ -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, @@ -49,7 +49,7 @@ class Intake( slaveSparks = mapOf(Pair(IntakeConstants.FOLLOLWER_ID, IntakeConstants.FOLLOWER_INV)) ) - return ProtoUndertaker(motor) + return Intake(motor) } } }