software:tortugabot_ros2
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
software:tortugabot_ros2 [2025/04/03 08:51] – [Hokuyo Lidar] s_fuyedc | software:tortugabot_ros2 [2025/04/03 12:01] (current) – [Notes] s_fuyedc | ||
---|---|---|---|
Line 205: | Line 205: | ||
- | === Notes === | + | ===== Notes ===== |
< | < | ||
Line 214: | Line 214: | ||
sudo apt update | sudo apt update | ||
sudo apt upgrade | sudo apt upgrade | ||
- | sudo apt install vim | + | nano .bashrc |
- | vim .bashrc | + | |
# into .bashrc | # into .bashrc | ||
Line 229: | Line 228: | ||
# Add user to dialout | # Add user to dialout | ||
sudo adduser $USER dialout | sudo adduser $USER dialout | ||
+ | sudo adduser $USER roscourse | ||
sudo adduser roscourse dialout | sudo adduser roscourse dialout | ||
Line 240: | Line 240: | ||
### | ### | ||
</ | </ | ||
+ | |||
+ | Install ROS tools, init rosdep and give sudo user arthur access to roscourse files. | ||
< | < | ||
- | # Set up workspace on turtle | + | # user: sudo |
+ | sudo apt install ros-dev-tools ros-jazzy-topic-tools | ||
+ | sudo rosdep init | ||
+ | </ | ||
+ | Set up workspace on turtle | ||
+ | |||
+ | < | ||
+ | # user: roscourse | ||
mkdir -p ~/ | mkdir -p ~/ | ||
cd ~/ | cd ~/ | ||
</ | </ | ||
- | < | + | Get repositories |
- | # requires sudo user | + | |
- | sudo apt install ros-dev-tools | + | |
- | </ | + | |
< | < | ||
- | vim tortugabot.repos | + | # user: roscourse |
- | repositories: | + | curl https://raw.githubusercontent.com/ |
- | | + | |
- | type: git | + | |
- | url: https://github.com/ | + | |
- | version: ros2 | + | |
- | urg_node2: | + | |
- | type: git | + | |
- | url: https://github.com/code-iai/urg_node2.git | + | |
- | version: main | + | |
- | + | ||
- | # Clone repositories | + | |
vcs import --recursive < tortugabot.repos | vcs import --recursive < tortugabot.repos | ||
+ | rosdep update | ||
</ | </ | ||
+ | Install dependencies | ||
< | < | ||
- | # allow sudo user arthur to see roscourse | + | # user: sudo |
- | sudo adduser arthur roscourse | + | rosdep install -i --from-path /home/roscourse/ |
+ | </ | ||
- | # sudo | + | Build the workspace and source the executables. |
- | sudo rosdep init | + | |
- | rosdep update | + | |
- | rosdep install -i --from-path | + | |
- | # | + | < |
- | cd .. | + | # user: roscourse |
+ | cd ~/ | ||
colcon build | colcon build | ||
source install/ | source install/ | ||
+ | echo ' | ||
+ | </ | ||
+ | Run the nodes in separate terminals | ||
+ | |||
+ | < | ||
# roboclaw | # roboclaw | ||
ros2 launch roboclaw_node roboclaw_launch.py | ros2 launch roboclaw_node roboclaw_launch.py | ||
Line 292: | Line 294: | ||
ros2 launch urg_node2 urg_node2.launch.py | ros2 launch urg_node2 urg_node2.launch.py | ||
- | # transform | + | # Throttle laser frequency to 10 hz |
+ | ros2 run topic_tools throttle messages /scan 10.0 | ||
+ | |||
+ | # transform | ||
ros2 run tf2_ros static_transform_publisher --frame-id base_footprint --child-frame-id laser | ros2 run tf2_ros static_transform_publisher --frame-id base_footprint --child-frame-id laser | ||
</ | </ | ||
software/tortugabot_ros2.1743670318.txt.gz · Last modified: 2025/04/03 08:51 by s_fuyedc