Skip to content

Commit

Permalink
Set the default for "use_sim_time" to "False" and corrected the speci…
Browse files Browse the repository at this point in the history
…fication method in the README
  • Loading branch information
KuraZuzu committed Nov 28, 2024
1 parent 9deb2b2 commit e0397b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ source ~/ros2_ws/install/setup.bash
## ゲームパッドの操作方法については、 https://github.com/rt-net/raspimouse_ros2_examples#joystick_control を参照してください
ros2 launch raspimouse_slam robot_bringup.launch.py lidar:=rplidar joyconfig:=f710
## PC側で以下のコマンドを実行
ros2 launch raspimouse_slam pc_slam.launch.py use_sim_time:=False
ros2 launch raspimouse_slam pc_slam.launch.py
## 地図ができたら引き続きPC側で実行
## 新しい端末を開いて次のコマンドを実行しましょう
## MAP_NAMEを地図ファイルの名前に置き換えましょう
Expand Down Expand Up @@ -137,7 +137,7 @@ Remote PC上で次のコマンドを実行して、SLAMを開始します。 RVi

Raspberry Pi MouseとRemote PCが通信するため、同じネットワーク上で同じ`ROS_DOMAIN_ID`を指定する必要があります。詳しい設定方法についてはこちらの[RT Software Tutorials](https://rt-net.github.io/tutorials/raspimouse/ros/samples.html#raspberry-pipcros)のROS 2タブを開いてご参照ください。
```sh
ros2 launch raspimouse_slam pc_slam.launch.py use_sim_time:=False
ros2 launch raspimouse_slam pc_slam.launch.py
```

構築した地図をファイルへ保存するために、Remote PC 上で次のコマンドを実行します。
Expand Down Expand Up @@ -169,7 +169,7 @@ ros2 launch raspimouse_navigation robot_navigation.launch.py lidar:=urg lidar_po
Remote PC上で、次のコマンドを実行します。自己位置推定と経路生成用のノードを起動し、RVizを立ち上げます。
引数のmapパラメータには、SLAMで生成した地図(.yamlファイル)を指定してください。
```sh
ros2 launch raspimouse_navigation pc_navigation.launch.py use_sim_time:=False map:=/path/to/MAP_FILE.yaml
ros2 launch raspimouse_navigation pc_navigation.launch.py map:=/path/to/MAP_FILE.yaml
```

無事RVizが起動したら、まずは初期位置・姿勢を合わせます。RVizの画面上部の*2D Pose Estimate*をクリックしましょう。
Expand Down
2 changes: 1 addition & 1 deletion raspimouse_navigation/launch/pc_navigation.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

def generate_launch_description():
# Declare arguments #
use_sim_time = LaunchConfiguration('use_sim_time', default='True')
use_sim_time = LaunchConfiguration('use_sim_time', default='False')
map_yaml_file = LaunchConfiguration('map')
params_file = LaunchConfiguration('params_file')
rviz2_file = LaunchConfiguration('rviz2_file')
Expand Down

0 comments on commit e0397b9

Please sign in to comment.