Skip to content

Commit

Permalink
Fix default firmware params
Browse files Browse the repository at this point in the history
  • Loading branch information
bjsowa committed Nov 15, 2023
1 parent 216ca7a commit 1ec66a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/parameters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@ struct Parameters : diff_drive_lib::RobotParams {
Parameters() {
// Wheel
wheel_encoder_resolution = 878.4F;
wheel_torque_constant = 1.0F;
wheel_torque_constant = 1.17647F;
wheel_pid_p = 0.0F;
wheel_pid_i = 0.005F;
wheel_pid_d = 0.0F;
wheel_pwm_duty_limit = 100.0F;

robot_wheel_radius = 0.0625F;
robot_wheel_separation = 0.33F;
robot_wheel_base = 0.3052;
robot_angular_velocity_multiplier = 1.91F;
robot_wheel_separation = 0.358F;
robot_wheel_base = 0.3052F;
robot_angular_velocity_multiplier = 1.76F;
robot_input_timeout = 500;
}

Expand Down

0 comments on commit 1ec66a9

Please sign in to comment.