Skip to content

Commit c100dc3

Browse files
committed
[UPD] readme for boolean values
1 parent 9da9f53 commit c100dc3

2 files changed

Lines changed: 26 additions & 26 deletions

File tree

README.en.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -129,16 +129,16 @@ First, please set up the following environment before proceeding to the next ins
129129

130130
1. Set the parameters inside [minimal.launch](sobit_pro_bringup/launch/minimal.launch) and select the functions to launch with SOBIT PRO.
131131
```xml
132-
<!-- Activate Mobile-Base (true), Arm (true), Head (true) -->
133-
<arg name="enable_mb" default="true"/>
134-
<arg name="enable_arm" default="true"/>
135-
<arg name="enable_head" default="true"/>
132+
<!-- Activate Mobile-Base (True), Arm (True), Head (True) -->
133+
<arg name="enable_mb" default="True"/>
134+
<arg name="enable_arm" default="True"/>
135+
<arg name="enable_head" default="True"/>
136136
...
137-
<arg name="open_rviz" default="true"/>
137+
<arg name="enable_rviz" default="True"/>
138138
...
139139
```
140140
> [!NOTE]
141-
> Rewrite it as `true` or `false` depending on the functions you want to use.
141+
> Rewrite it as `True` or `False` depending on the functions you want to use.
142142
143143
2. Execute the launch file [minimal.launch](sobit_pro_bringup/launch/minimal.launch).
144144
```sh
@@ -161,13 +161,13 @@ SOBIT PRO can be moved by the moving mechanism alone.
161161

162162
1. Rewrite [minimal.launch](sobit_pro_bringup/launch/minimal.launch) as follows
163163
```xml
164-
<!-- Activate Mobile-Base (true), Arm (true), Head (true) -->
165-
<arg name="enable_mb" default="true"/>
166-
<arg name="enable_arm" default="false"/>
167-
<arg name="enable_head" default="false"/>
164+
<!-- Activate Mobile-Base (True), Arm (True), Head (True) -->
165+
<arg name="enable_mb" default="True"/>
166+
<arg name="enable_arm" default="False"/>
167+
<arg name="enable_head" default="False"/>
168168

169-
<!-- URG: lan-cable (true), usb-cable (false) -->
170-
<arg name="urg_lan" default="false"/>
169+
<!-- URG: lan-cable (True), usb-cable (False) -->
170+
<arg name="urg_lan" default="False"/>
171171
...
172172
```
173173
2. Execute the launch file [minimal.launch](sobit_pro_bringup/launch/minimal.launch).
@@ -180,7 +180,7 @@ SOBIT PRO can be moved by the moving mechanism alone.
180180
```
181181

182182
> [!NOTE]
183-
> URG(LiDAR) should be set to `true` for LAN type communication and to `false` for USB type communication.
183+
> URG(LiDAR) should be set to `True` for LAN type communication and to `False` for USB type communication.
184184

185185
<p align="right">(<a href="#readme-top">back to top</a>)</p>
186186

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -129,17 +129,17 @@ SOBITSが開発した4輪独立ステアリング駆動式のモバイルマニ
129129

130130
1. SOBIT PROの起動する機能をパラメタとして[minimal.launch](sobit_pro_bringup/launch/minimal.launch)に設定します.
131131
```xml
132-
<!-- Activate Mobile-Base (true), Arm (true), Head (true) -->
133-
<arg name="enable_mb" default="true"/>
134-
<arg name="enable_arm" default="true"/>
135-
<arg name="enable_head" default="true"/>
132+
<!-- Activate Mobile-Base (True), Arm (True), Head (True) -->
133+
<arg name="enable_mb" default="True"/>
134+
<arg name="enable_arm" default="True"/>
135+
<arg name="enable_head" default="True"/>
136136
...
137-
<arg name="open_rviz" default="true"/>
137+
<arg name="enable_rviz" default="True"/>
138138
...
139139
```
140140

141141
> [!NOTE]
142-
> 使用したい機能に応じて,`true``false`かに書き換えてください.
142+
> 使用したい機能に応じて,`True``False`かに書き換えてください.
143143
144144
2. [minimal.launch](sobit_pro_bringup/launch/minimal.launch)というlaunchファイルを実行します.
145145
```sh
@@ -162,13 +162,13 @@ SOBIT PROの移動機構単体で動かすことができます.
162162

163163
1. [minimal.launch](sobit_pro_bringup/launch/minimal.launch)の設定を次にように書き換えます.
164164
```xml
165-
<!-- Activate Mobile-Base (true), Arm (true), Head (true) -->
166-
<arg name="enable_mb" default="true"/>
167-
<arg name="enable_arm" default="false"/>
168-
<arg name="enable_head" default="false"/>
165+
<!-- Activate Mobile-Base (True), Arm (True), Head (True) -->
166+
<arg name="enable_mb" default="True"/>
167+
<arg name="enable_arm" default="False"/>
168+
<arg name="enable_head" default="False"/>
169169

170-
<!-- URG: lan-cable (true), usb-cable (false) -->
171-
<arg name="urg_lan" default="false"/>
170+
<!-- URG: lan-cable (True), usb-cable (False) -->
171+
<arg name="urg_lan" default="False"/>
172172
...
173173
```
174174
2. [minimal.launch](sobit_pro_bringup/launch/minimal.launch)というlaunchファイルを実行します.
@@ -181,7 +181,7 @@ SOBIT PROの移動機構単体で動かすことができます.
181181
```
182182

183183
> [!NOTE]
184-
> URG(LiDAR)はLAN式通信の場合は`true`に,USB式通信の場合は`false`に設定してください.
184+
> URG(LiDAR)はLAN式通信の場合は`True`に,USB式通信の場合は`False`に設定してください.
185185

186186
<p align="right">(<a href="#readme-top">上に戻る</a>)</p>
187187

0 commit comments

Comments
 (0)