Skip to content

Commit

Permalink
Update real_world_constants.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ember-auburn committed Aug 8, 2023
1 parent 26fa1b4 commit fac3fde
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/world_interface/real_world_constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ constexpr auto motorSerialIDMap = frozen::make_unordered_map<motorid_t, can::dev

/** @brief A mapping of PID controlled motors to their pid coefficients. */
constexpr auto motorPIDMap = frozen::make_unordered_map<motorid_t, pidcoef_t>(
{{motorid_t::shoulder, {70, 0, 0}}, {motorid_t::elbow, {15, 7, -2}}});
{{motorid_t::shoulder, {70, 0, 0}}, {motorid_t::elbow, {15, 7, -2}},
{motorid_t::frontLeftSteer, {32, 0, 0}}, {motorid_t::frontRightSteer, {32, 0, 0}},
{motorid_t::backLeftSteer, {32, 0, 0}}, {motorid_t::backRightSteer, {32, 0, 0}}});

/**
* @brief A mapping of motorids to power scale factors when commanded with positive power.
Expand Down

0 comments on commit fac3fde

Please sign in to comment.