Skip to content

Commit 502f3d0

Browse files
committed
scan lines
1 parent 9bebd50 commit 502f3d0

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

deploy/config/localization.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ elongation_factor = 1.5
1414
# Variance of the odometry
1515
odometry_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
2121
variance_initial = [0.01, 0.01, 0.01]
2222
# Initial score of a new hypothesis
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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

deploy/config/walking_engine.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)