Skip to content

Commit

Permalink
Rename example_launch to robot_launch
Browse files Browse the repository at this point in the history
  • Loading branch information
lukicdarkoo committed Apr 27, 2020
1 parent 146719d commit 42c517b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ source $HOME/ros2_ws/install/local_setup.bash

Then, launch the driver:
```
ros2 launch webots_ros2_epuck2 example_launch.py
ros2 launch webots_ros2_epuck2 robot_launch.py
```
This command will activate a ROS2 node with support for all sensors and actuators available on the e-puck except the camera.
We consider the camera node be heavy for device such as Raspberry Pi Zero W and therefore it is not included by default.
You can activate the camera node as:
```
ros2 launch webots_ros2_epuck2 example_launch.py camera:=true
ros2 launch webots_ros2_epuck2 robot_launch.py camera:=true
```

Your robot should be ready now and you can check examples [here](https://github.com/cyberbotics/webots_ros2/blob/master/webots_ros2_epuck/EPUCK_ROS2.md).
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion epuck_ros2/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
data_files = []
data_files.append(
('share/ament_index/resource_index/packages', ['resource/' + package_name]))
data_files.append(('share/' + package_name, ['launch/example_launch.py']))
data_files.append(('share/' + package_name, ['launch/robot_launch.py']))
data_files.append(('share/' + package_name, ['package.xml']))

setup(
Expand Down

0 comments on commit 42c517b

Please sign in to comment.