Skip to content

Commit b0cd6e5

Browse files
committed
change lynx default gamepad speed
1 parent e11a614 commit b0cd6e5

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

docker/utils/update_config_directory.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ copy_package_file() {
2929
# source robot environment
3030
source /run/husarion/robot_config.env
3131

32-
copy_package_file husarion_ugv config/joy2twist_${ROBOT_MODEL_NAME}.yaml
32+
copy_package_file husarion_ugv_bringup config/joy2twist_${ROBOT_MODEL_NAME}.yaml
3333
copy_package_file husarion_ugv_controller config
3434
copy_package_file husarion_ugv_lights config/user_animations.yaml
3535
copy_package_file husarion_ugv_lights config/${ROBOT_MODEL_NAME}_animations.yaml

husarion_ugv/config/joy2twist_lynx.yaml renamed to husarion_ugv_bringup/config/joy2twist_lynx.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44

55
linear_velocity_factor:
66
fast: 1.5
7-
regular: 0.9
8-
slow: 0.3
7+
regular: 1.2
8+
slow: 0.4
99

1010
angular_velocity_factor:
1111
fast: 2.0
12-
regular: 0.9
13-
slow: 0.3
12+
regular: 0.78
13+
slow: 0.39
1414

1515
e_stop:
1616
present: true
File renamed without changes.

husarion_ugv_bringup/launch/bringup.launch.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,14 +172,14 @@ def generate_launch_description():
172172
}.items(),
173173
)
174174

175-
husarion_ugv_common_dir = PythonExpression(
175+
husarion_ugv_bringup_common_dir = PythonExpression(
176176
[
177177
"'",
178178
common_dir_path,
179-
"/husarion_ugv' if '",
179+
"/husarion_ugv_bringup' if '",
180180
common_dir_path,
181181
"' else '",
182-
FindPackageShare("husarion_ugv"),
182+
FindPackageShare("husarion_ugv_bringup"),
183183
"'",
184184
]
185185
)
@@ -195,7 +195,7 @@ def generate_launch_description():
195195
"namespace": namespace,
196196
"joy2twist_params_file": PathJoinSubstitution(
197197
[
198-
husarion_ugv_common_dir,
198+
husarion_ugv_bringup_common_dir,
199199
"config",
200200
PythonExpression(["'joy2twist_", robot_model_name, ".yaml'"]),
201201
]

0 commit comments

Comments
 (0)