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/01 16:19] – [Hokuyo Lidar] s_fuyedc | software:tortugabot_ros2 [2025/04/03 12:01] (current) – [Notes] s_fuyedc | ||
---|---|---|---|
Line 3: | Line 3: | ||
For the Ubuntu 20.04 ROS 1 install, go to [[software: | For the Ubuntu 20.04 ROS 1 install, go to [[software: | ||
+ | Tor the hardware status of the Turtles [[https:// | ||
==== Install Ubuntu 24.04 on ThinkPad e485 AMD Ryzen 5 ==== | ==== Install Ubuntu 24.04 on ThinkPad e485 AMD Ryzen 5 ==== | ||
* Get [[https:// | * Get [[https:// | ||
Line 44: | Line 45: | ||
==== Hokuyo LAN Config ==== | ==== Hokuyo LAN Config ==== | ||
- | When connecting the Hokuyo laser sensor via LAN, the connection must be configured manually. This way, the laptop can directly communicate with the LIDAR. Connect the Battery to the Tortugabot to give power to the Hokuyo LIDAR, then connect it via LAN to this laptop. Open Wired Settings and configure the profile. Set IPv4 to Manual and give it an IP and Submask. | + | When connecting the Hokuyo laser sensor via LAN, the connection must be configured manually. This way, the laptop can directly communicate with the LIDAR. Connect the Battery to the Tortugabot to give power to the Hokuyo LIDAR, then connect it via LAN to this laptop. Open Wired Settings and configure the profile. Set IPv4 to Manual and give it an IP and Submask. Without the Gateway the connection is dropped after a while. |
- | {{: | + | {{: |
==== DS3 Controller Bluetooth Setup ==== | ==== DS3 Controller Bluetooth Setup ==== | ||
- | The controller can be set up via cable-pairing. | + | Open up ''/ |
+ | |||
+ | Now the controller can be paried with the Mini-USB cable. | ||
- Enable Bluetooth on the laptop and keep the Bluetooth settings open. | - Enable Bluetooth on the laptop and keep the Bluetooth settings open. | ||
Line 61: | Line 64: | ||
- Bluetooth settings show the paired DS3 controller. | - Bluetooth settings show the paired DS3 controller. | ||
- | If the Bluetooth client refuses to connect shows a pairing code, [[https:// | + | |
To test the connection, run the joy controller | To test the connection, run the joy controller | ||
Line 166: | Line 169: | ||
Hold R1 to unlock movement. Left stick is forwards and backwards, right stick is for left and right. The wheels should move only when the sticks are pressed together with R1. When issues arise reboot the roboclaw. | Hold R1 to unlock movement. Left stick is forwards and backwards, right stick is for left and right. The wheels should move only when the sticks are pressed together with R1. When issues arise reboot the roboclaw. | ||
+ | |||
+ | ===== Rviz visualization ===== | ||
+ | |||
+ | Add this line into the .bashrc | ||
+ | < | ||
+ | export QT_QPA_PLATFORM=xcb rviz2 | ||
+ | </ | ||
Check the odometry calculation in rviz | Check the odometry calculation in rviz | ||
Line 172: | Line 182: | ||
</ | </ | ||
- | In **Global Options** set **Fixed Frame** | + | In **Global Options** set **Fixed Frame** to **odom**. Add TF to see the broadcast between odom and base_footprint. |
Also see the [[https:// | Also see the [[https:// | ||
Line 178: | Line 188: | ||
===== Hokuyo Lidar ===== | ===== Hokuyo Lidar ===== | ||
- | Datasheets | + | Datasheets: {{ : |
- | Specification: | ||
- | |||
- | Communication: | ||
< | < | ||
Line 193: | Line 200: | ||
source install/ | source install/ | ||
ros2 launch urg_node2 urg_node2.launch.py | ros2 launch urg_node2 urg_node2.launch.py | ||
- | ros2 run tf2_ros static_transform_publisher --frame-id | + | ros2 run tf2_ros static_transform_publisher --frame-id |
- | ros2 run robot_state_publisher robot_state_publisher / | + | |
</ | </ | ||
+ | |||
+ | ===== Notes ===== | ||
+ | |||
+ | < | ||
+ | # Install ROS2 | ||
+ | |||
+ | |||
+ | # ssh to turtle | ||
+ | sudo apt update | ||
+ | sudo apt upgrade | ||
+ | nano .bashrc | ||
+ | |||
+ | # into .bashrc | ||
+ | source / | ||
+ | export ROS_DOMAIN_ID=6 # for tortuga6 | ||
+ | |||
+ | ### | ||
+ | |||
+ | # Connect joy teleop bluetooth | ||
+ | sudo vim / | ||
+ | # and set the parameter ClassicBondedOnly=false | ||
+ | |||
+ | # Add user to dialout | ||
+ | sudo adduser $USER dialout | ||
+ | sudo adduser $USER roscourse | ||
+ | sudo adduser roscourse dialout | ||
+ | |||
+ | #reboot | ||
+ | |||
+ | ros2 run joy joy_node | ||
+ | # output: Dual Shock Controller recognized | ||
+ | |||
+ | ros2 topic echo /joy | ||
+ | |||
+ | ### | ||
+ | </ | ||
+ | |||
+ | Install ROS tools, init rosdep and give sudo user arthur access to roscourse files. | ||
+ | |||
+ | < | ||
+ | # user: sudo | ||
+ | sudo apt install ros-dev-tools ros-jazzy-topic-tools | ||
+ | sudo rosdep init | ||
+ | </ | ||
+ | |||
+ | Set up workspace on turtle | ||
+ | |||
+ | < | ||
+ | # user: roscourse | ||
+ | mkdir -p ~/ | ||
+ | cd ~/ | ||
+ | </ | ||
+ | |||
+ | Get repositories | ||
+ | |||
+ | < | ||
+ | # user: roscourse | ||
+ | curl https:// | ||
+ | vcs import --recursive < tortugabot.repos | ||
+ | rosdep update | ||
+ | </ | ||
+ | |||
+ | Install dependencies | ||
+ | < | ||
+ | # user: sudo | ||
+ | rosdep install -i --from-path / | ||
+ | </ | ||
+ | |||
+ | Build the workspace and source the executables. | ||
+ | |||
+ | < | ||
+ | # user: roscourse | ||
+ | cd ~/ | ||
+ | colcon build | ||
+ | source install/ | ||
+ | echo ' | ||
+ | </ | ||
+ | |||
+ | Run the nodes in separate terminals | ||
+ | |||
+ | < | ||
+ | # roboclaw | ||
+ | ros2 launch roboclaw_node roboclaw_launch.py | ||
+ | |||
+ | # joy | ||
+ | ros2 launch roboclaw_node joy_teleop_launch.xml | ||
+ | |||
+ | # laser | ||
+ | ros2 launch urg_node2 urg_node2.launch.py | ||
+ | |||
+ | # Throttle laser frequency to 10 hz | ||
+ | ros2 run topic_tools throttle messages /scan 10.0 | ||
+ | |||
+ | # transform base_footprint < laser | ||
+ | ros2 run tf2_ros static_transform_publisher --frame-id base_footprint --child-frame-id laser | ||
+ | </ | ||
software/tortugabot_ros2.1743524375.txt.gz · Last modified: 2025/04/01 16:19 by s_fuyedc