File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ elongation_factor = 1.5
1414# Variance of the odometry
1515odometry_variance = [0.05 , 0.025 , 0.01 ]
1616# Variance of the line measurement
17- line_measurement_variance = [1000 .0 , 320 .0 ]
17+ line_measurement_variance = [3000 .0 , 1000 .0 ]
1818# Variance of the circle measurement
19- circle_measurement_variance = [1000 .0 , 1000 .0 ]
19+ circle_measurement_variance = [3000 .0 , 3000 .0 ]
2020# Initial pose variance of a new hypothesis
2121variance_initial = [0.01 , 0.01 , 0.01 ]
2222# Initial score of a new hypothesis
Original file line number Diff line number Diff line change 1+ [balancing ]
2+ # The amount to swing the arms based on the forward movement.
3+ arm_swing_multiplier = 0.6
4+
5+ # The alpha parameter used for the low pass filter over the gyroscope values.
6+ #
7+ # Higher values mean that the filtered gyroscope value responds to changes quicker,
8+ # and lower values mean that it responds slower.
9+ gyro_lpf_alpha = 0.6
10+
11+ # The weight of the balance adjustment based on the y gyroscope value.
12+ # Increasing this value will use a larger portion of the filtered gyro value
13+ # to adjust the pitch of the robot's ankles, in order to balance the pendulum motion.
14+ filtered_gyro_y_multiplier = 0.1
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ arm_swing_multiplier = 0.6
9999#
100100# Higher values mean that the filtered gyroscope value responds to changes quicker,
101101# and lower values mean that it responds slower.
102- gyro_lpf_alpha = 0.7
102+ gyro_lpf_alpha = 0.6
103103
104104# The weight of the balance adjustment based on the y gyroscope value.
105105# Increasing this value will use a larger portion of the filtered gyro value
You can’t perform that action at this time.
0 commit comments