Skip to content

Commit

Permalink
Z arg set to 0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rafal-gorecki committed Sep 18, 2024
1 parent c1321bf commit 441a9fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Launch arguments are largely common to both simulation and physical robot. Howev
| 🤖🖥️ | `wheel_type` | Specify the wheel type. If the selected wheel type is not 'custom', the wheel_config_path and controller_config_path arguments will be automatically adjusted and can be omitted. <br/> ***string:*** `WH01` (choices: `WH01`, `WH02`, `WH04`, `WH05`, `custom`) |
| 🖥️ | `x` | Initial robot position in the global 'x' axis. <br/> ***float:*** `0.0` |
| 🖥️ | `y` | Initial robot position in the global 'y' axis. <br/> ***float:***` -2.0` |
| 🖥️ | `z` | Initial robot position in the global 'z' axis. <br/> ***float:*** `0.2` |
| 🖥️ | `z` | Initial robot position in the global 'z' axis. <br/> ***float:*** `0.0` |
| 🖥️ | `roll` | Initial robot 'roll' orientation. <br/> ***float:*** `0.0` |
| 🖥️ | `pitch` | Initial robot 'pitch' orientation. <br/> ***float:*** `0.0` |
| 🖥️ | `yaw` | Initial robot 'yaw' orientation. <br/> ***float:*** `0.0` |
Expand Down
2 changes: 1 addition & 1 deletion panther_gazebo/launch/spawn_robot.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def generate_launch_description():

z = LaunchConfiguration("z")
declare_z_arg = DeclareLaunchArgument(
"z", default_value="0.2", description="Initial robot position in the global 'z' axis."
"z", default_value="0.0", description="Initial robot position in the global 'z' axis."
)

roll = LaunchConfiguration("roll")
Expand Down

0 comments on commit 441a9fe

Please sign in to comment.