Skip to content

Commit

Permalink
begin merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Superbro525Alt committed Feb 12, 2024
1 parent 87c92ed commit 29614ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/include/RobotMap.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ struct RobotMap {
Controllers controllers;

struct IntakeSystem {
rev::CANSparkMax intakeMotor{2, rev::CANSparkMax::MotorType::kBrushed};
rev::CANSparkMax intakeMotor{15, rev::CANSparkMax::MotorType::kBrushed};
// wom::CANSparkMaxEncoder intakeEncoder{&intakeMotor, 0.1_m};
frc::DigitalInput intakeSensor{4};
// frc::DigitalInput magSensor{0};
Expand All @@ -44,7 +44,7 @@ struct RobotMap {
IntakeSystem intakeSystem;

struct Shooter {
rev::CANSparkMax shooterMotor{11, rev::CANSparkMax::MotorType::kBrushless}; // Port 11
rev::CANSparkMax shooterMotor{1, rev::CANSparkMax::MotorType::kBrushless}; // Port 11
// frc::DigitalInput shooterSensor{2};

// wom::VoltageController shooterMotorGroup =
Expand Down Expand Up @@ -169,8 +169,8 @@ struct RobotMap {
SwerveTable swerveTable;

struct AlphaArmSystem {
rev::CANSparkMax alphaArmMotor{12, rev::CANSparkMax::MotorType::kBrushless};
rev::CANSparkMax wristMotor{15, rev::CANSparkMax::MotorType::kBrushless};
rev::CANSparkMax alphaArmMotor{6, rev::CANSparkMax::MotorType::kBrushless};
rev::CANSparkMax wristMotor{11, rev::CANSparkMax::MotorType::kBrushless};

wom::Gearbox alphaArmGearbox{&alphaArmMotor, nullptr, frc::DCMotor::NEO(1)};
wom::Gearbox wristGearbox{&wristMotor, nullptr, frc::DCMotor::NEO(1)};
Expand Down

0 comments on commit 29614ca

Please sign in to comment.