Nodes to transform ROS2 data to be used in Rerun.
colcon build --symlink-install
. install/setup.bash
ros2 run rerun_visualization rerun_node
This installation guide worked for the Realsense D435, on a ubuntu 22.04 VM. It will probably also work for other realsense cameras, but is not tested. Make sure to use a USB3 cable.
sudo apt install ros-humble-realsense2_camera*
ros2 launch realsense2_camera rs_launch.py pointcloud.enable:=true
First, flash Ubuntu for the raspberry pi 4 onto an micro SD card, see https://ubuntu.com/download/raspberry-pi
cd
git clone <https://github.com/mangdangroboticsclub/mini_pupper_2_bsp.git> mini_pupper_bsp
cd mini_pupper_bsp
./install.sh
reboot
cd
git clone <https://github.com/mangdangroboticsclub/mini_pupper_ros.git> -b ros2-dev mini_pupper_ros
cd mini_pupper_ros
./install.sh
cd
git clone <https://github.com/mangdangroboticsclub/mini_pupper_ros.git> -b ros2-dev mini_pupper_ros_urdf
echo "source /opt/ros/humble/setup.bash" >> ~/.bashrc
reboot
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
cargo install rerun-cli
rerun
ros2 launch mini_pupper_bringup bringup.launch.py
cd
git clone <https://github.com/MilanLR/ROS2-rerun-integration> -b node
cd ROS2-rerun-integration
Optionally, change the IP address in rerun_visualization/rerun_node.py
to your hosts' IP address first
colcon build --symlink-install && \
. install/setup.bash && \
ros2 run rerun_visualization rerun_node
sudo apt install ros-humble-cartographer
sudo apt install ros-humble-cartographer-ros
. install/setup.bash
ros2 launch generic_cartographer cartographer.launch.py
First, flash Ubuntu for the raspberry pi 4 onto an micro SD card, see https://ubuntu.com/download/raspberry-pi
. For additional setup of the network and ssh see https://emanual.robotis.com/docs/en/platform/turtlebot3/sbc_setup/#sbc-setup
Install ros2 humble following https://docs.ros.org/en/humble/Installation/Ubuntu-Install-Debians.html
sudo apt install ros-humble-cartographer
sudo apt install ros-humble-cartographer-ros
sudo apt install ros-humble-hls-lfcd-lds-driver
sudo apt install ros-humble-turtlebot3-msgs
sudo apt install ros-humble-dynamixel-sdk
sudo apt install libudev-dev
mkdir -p ~/turtlebot3_ws/src && cd ~/turtlebot3_ws/src
git clone -b humble-devel https://github.com/ROBOTIS-GIT/turtlebot3.git
git clone -b ros2-devel https://github.com/ROBOTIS-GIT/ld08_driver.git
cd ~/turtlebot3_ws/
echo 'source /opt/ros/humble/setup.bash' >> ~/.bashrc
source ~/.bashrc
colcon build --symlink-install --parallel-workers 1
echo 'source ~/turtlebot3_ws/install/setup.bash' >> ~/.bashrc
source ~/.bashrc
sudo cp `ros2 pkg prefix turtlebot3_bringup`/share/turtlebot3_bringup/script/99-turtlebot3-cdc.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules
sudo udevadm trigger
echo 'export LDS_MODEL=LDS-02' >> ~/.bashrc # or LDS-01
source ~/.bashrc
sudo dpkg --add-architecture armhf
sudo apt update
sudo apt install libc6:armhf
export OPENCR_PORT=/dev/ttyACM0
export OPENCR_MODEL=burger
rm -rf ./opencr_update.tar.bz2
wget https://github.com/ROBOTIS-GIT/OpenCR-Binaries/raw/master/turtlebot3/ROS2/latest/opencr_update.tar.bz2
tar -xvf ./opencr_update.tar.bz2
cd ~/opencr_update
./update.sh $OPENCR_PORT $OPENCR_MODEL.opencr
export TURTLEBOT3_MODEL=burger
ros2 launch turtlebot3_bringup robot.launch.py
cd
git clone <https://github.com/MilanLR/ROS2-rerun-integration> -b node
cd ROS2-rerun-integration
Optionally, change the IP address in rerun_visualization/rerun_node.py
to your hosts' IP address first
colcon build --symlink-install && \
. install/setup.bash && \
ros2 run rerun_visualization rerun_node
. install/setup.bash
ros2 launch generic_cartographer cartographer.launch.py