Skip to content

Commit c020613

Browse files
committed
Add instructions for launching a specific camera when multiple cameras are connected in FAQ
1 parent 24ae61f commit c020613

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

docs/en/source/8_FAQ/FAQ.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,18 @@ find_package(OpenCV REQUIRED)
5858
### Why Are There So Many Launch Files?
5959

6060
- Different cameras have varying default resolutions and image formats.
61-
- To simplify usage, each camera has its own launch file.
61+
- To simplify usage, each camera has its own launch file.
62+
63+
### How to Launch a Specific Camera When Multiple Cameras Are Connected
64+
65+
While the launch file did not explicitly specify which device to use. In that case, the driver will connect to the default device.
66+
67+
You can check the serial number of your device by running:
68+
```bash
69+
rosrun orbbec_camera list_devices_node
70+
```
71+
72+
Then launch with the serial number explicitly set, for example:
73+
```bash
74+
roslaunch orbbec_camera femto_bolt.launch serial_number:=CL8H741005J
75+
```

docs/zh/source/8_FAQ/FAQ.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,18 @@ find_package(OpenCV REQUIRED)
6868
### 为什么有这么多启动文件?
6969

7070
- 不同的相机具有不同的默认分辨率和图像格式。
71-
- 为了简化使用,每个相机都有自己的启动文件。
71+
- 为了简化使用,每个相机都有自己的启动文件。
72+
73+
### 多相机连接时如何指定启动某一个相机
74+
75+
如果启动文件未显式指定要使用的设备,在同时连接多台相机时,驱动会默认连接到其中一个(默认设备)。
76+
77+
可以先通过以下命令查看设备序列号:
78+
```bash
79+
rosrun orbbec_camera list_devices_node
80+
```
81+
82+
然后在启动时显式指定序列号,例如:
83+
```bash
84+
roslaunch orbbec_camera femto_bolt.launch serial_number:=CL8H741005J
85+
```

0 commit comments

Comments
 (0)