Skip to content

Commit

Permalink
Merge pull request #36 from turtlebot/hilary-luo/updated-worlds
Browse files Browse the repository at this point in the history
Updated Worlds
  • Loading branch information
roni-kreinin authored Apr 10, 2023
2 parents b6901b1 + 95139c9 commit 7e15438
Show file tree
Hide file tree
Showing 8 changed files with 508 additions and 70 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Turtlebot4 Simulation using Ignition Gazebo.

Visit the [TurtleBot 4 User Manual](https://turtlebot.github.io/turtlebot4-user-manual/software/turtlebot4_packages.html#turtlebot-4-simulator) for details.
Visit the [TurtleBot 4 User Manual](https://turtlebot.github.io/turtlebot4-user-manual/software/turtlebot4_simulator.html) for details.

## Installation
```bash
Expand Down
5 changes: 4 additions & 1 deletion turtlebot4_ignition_bringup/launch/ignition.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@
DeclareLaunchArgument('use_sim_time', default_value='true',
choices=['true', 'false'],
description='use_sim_time'),
DeclareLaunchArgument('world', default_value='depot',
DeclareLaunchArgument('world', default_value='warehouse',
description='Ignition World'),
DeclareLaunchArgument('model', default_value='lite',
choices=['standard', 'lite'],
description='Turtlebot4 Model'),
]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
description='Ignition model name'),
DeclareLaunchArgument('namespace', default_value='',
description='Robot namespace'),
DeclareLaunchArgument('world', default_value='depot',
DeclareLaunchArgument('world', default_value='warehouse',
description='World name'),
DeclareLaunchArgument('model', default_value='standard',
choices=['standard', 'lite'],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
description='Robot namespace'),
DeclareLaunchArgument('rviz', default_value='true',
choices=['true', 'false'], description='Start rviz.'),
DeclareLaunchArgument('world', default_value='depot',
DeclareLaunchArgument('world', default_value='warehouse',
description='Ignition World'),
DeclareLaunchArgument('model', default_value='standard',
choices=['standard', 'lite'],
Expand Down
4 changes: 2 additions & 2 deletions turtlebot4_ignition_bringup/launch/turtlebot4_spawn.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

from ament_index_python.packages import get_package_share_directory

from irobot_create_common_bringup.offset import OffsetParser, RotationalOffsetX, RotationalOffsetY
from irobot_create_common_bringup.namespace import GetNamespacedName
from irobot_create_common_bringup.offset import OffsetParser, RotationalOffsetX, RotationalOffsetY

from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument, GroupAction, IncludeLaunchDescription
Expand Down Expand Up @@ -205,7 +205,7 @@ def generate_launch_description():
output='screen',
arguments=[
'0', '0', '0',
'1.5707', '-1.5707' ,'0',
'1.5707', '-1.5707', '0',
'oakd_rgb_camera_optical_frame',
[robot_name, '/oakd_rgb_camera_frame/rgbd_camera']
],
Expand Down
Loading

0 comments on commit 7e15438

Please sign in to comment.