Data Sheets =========== * \• `Husky Data Sheet `__ * \• `Zed2i Data Sheet `__ * \• `MP1-11TGS (Main PC) Data Sheet `__ * \• `Telefonica RUT240 (WiFi Router) Data Sheet `__ * \• `Fixposition Data Sheet `__ * \• `Ouster Data Sheets `__ * \• `Nvidia Jetson Orin 2GB `__ * \• `RealSense Data Sheet `__ * \• `Flir Data Sheet `__ * \• `Ufactory xarm6 Data Sheet `__ * \• `Robotiq Force Torque sensor Data Sheet `__ * \• `Robotiq gripper Data Sheet `__ * \• `Universal Robots UR5e Data Sheet `__ Documentations ============== * \• `ZED2 ROS Docs `__ * \• `ZED2 ROS2 Docs `__ * \• `Husky Noetic ROS Docs `__ * \• `Husky Foxy ROS2 Docs `__ * \• `Ouster ROS Docs `__ * \• `Ouster ROS2 Docs `__ * \• `Nvidia Jetson Orin SDK Resources `__ * \• `Fixposition ROS & ROS2 Docs `__ * \• `RealSense SDK Docs `__ * \• `Ufactory xarm6 Documentation `__ * \• `Ufactory xarm6 ROS Docs `__ * \• `Ufactory xarm6 ROS2 Docs `__ * \• `Robotiq Force Torque sensor Docs `__ * \• `Robotiq gripper Docs `__ * \• `Universal Robots UR5e Docs `__ ROS2 Installation Humble ======================== .. _ROS2 Humble: https://docs.ros.org/en/humble/Installation.html .. _Ubuntu 22.04: https://releases.ubuntu.com/jammy/ .. figure:: media/pictures/humble.png :width: 70% :align: center :class: mbsrounded | The ROS driver for the robots is initially supported for the ``ROS2 Humble``. All of ROS related software should be installed in a remote **Husky-PC** as well as the **Remote-PC**. The steps for shown below are for **Remote-PC** as the Husky is pre-installed with the required drivers and ROS distribution. .. warning:: Care should be taken when installing ROS so that it matches with your CPU's architecture (i.e. armhf, amd64, arm6, etc.) .. note:: All the ROS related software should be installed/run on remote PC/Rasberry Pi/Nvidia board, nothing needed to be installed on robots control board if bought with the ROS pkg. PC Setup -------- `ROS2 Humble`_ installation requires Ubutnu 22.04. 1. Download `Ubuntu 22.04`_ 2. Follow the `Ubuntu 22.04 installation guide `_ ROS Humble Installation ------------------------ The ROS driver provided can be run either on a remote PC or on board robot computer. Typically, the on-board computer already has a pre-installed ROS distribution, so the instructions below will be applicable to a remote computer. You may execute the following commands to install ROS Humble, or you can simply follow the `instructions `_ from the ROS Wiki. Set Locale ---------- Ensure that your system supports :code:`UTF-8` locale. Verify your locale settings with the following command: .. code-block:: bash locale If necessary, set up a :code:`UTF-8` locale: .. code-block:: bash sudo apt update && sudo apt install locales sudo locale-gen en_US en_US.UTF-8 sudo update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 export LANG=en_US.UTF-8 Setup Sourcess -------------- Add the ROS2 apt repository to your system. First, make sure that the Ubuntu Universe repository `Ubuntu Universe repository `_ is enabled: .. code-block:: bash sudo apt install software-properties-common sudo add-apt-repository universe Next, add the ROS2 GPG key with apt: .. code-block:: bash sudo apt update && sudo apt install curl -y sudo curl -sSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -o /usr/share/keyrings/ros-archive-keyring.gpg Then, add the repository to your sources list: .. code-block:: bash echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/ros-archive-keyring.gpg] http://packages.ros.org/ros2/ubuntu $(. /etc/os-release && echo $UBUNTU_CODENAME) main" | sudo tee /etc/apt/sources.list.d/ros2.list > /dev/null Install ROS2 Packages --------------------- Update your apt repository caches after setting up the repositories: .. code-block:: bash sudo apt update Ensure your system is up to date before installing new packages: .. code-block:: bash sudo apt upgrade .. warning:: Due to early updates in Ubuntu 22.04 it is important that :code:`systemd` and :code:`udev`-related packages are updated before installing ROS2. The installation of ROS2’s dependencies on a freshly installed system without upgrading can trigger the **removal of critical system packages**. Please refer to `ros2/ros2#1272 `_ and `Launchpad #1974196 `_ for more information. .. _ros-humble-desktop: Desktop Install (Recommended) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Install ROS, RViz, demos, and tutorials: .. code-block:: bash sudo apt install ros-humble-desktop ROS-Base Install (Bare Bones) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Install communication libraries, message packages, and command line tools without GUI tools: .. code-block:: bash sudo apt install ros-humble-ros-base Development Tools ----------------- Install compilers and other tools to build ROS packages: .. code-block:: bash sudo apt install ros-dev-tools Environment Setup ----------------- Source the setup script to set up your environment: .. code-block:: bash # Replace ".bash" with your shell if you're not using bash # Possible values are: setup.bash, setup.sh, setup.zsh source /opt/ros/humble/setup.bash Try Some Examples ----------------- If you installed :ref:`ros-humble-desktop` above, try some examples: Run a C++ :code:`talker` in one terminal: .. code-block:: bash source /opt/ros/humble/setup.bash ros2 run demo_nodes_cpp talker Run a Python :code:`listener` in another terminal: .. code-block:: bash source /opt/ros/humble/setup.bash ros2 run demo_nodes_py listener This verifies both the C++ and Python APIs are working properly. Next Steps After Installing --------------------------- Continue with the `tutorials and demos `_ to configure your environment, create your own workspace and packages, and learn ROS2 core concepts. Using the ROS1 Bridge ---------------------- Connect topics from ROS1 to ROS2 and vice-versa using the ROS1 bridge. See the dedicated `documentation `_ on how to build and use the ROS1 bridge. Additional RMW Implementations (Optional) ----------------------------------------- ROS2 uses Fast DDS as the default middleware (RMW), but you can replace it at runtime. See the `guide `_ on how to work with multiple RMWs. Troubleshooting --------------- Refer to the troubleshooting techniques found `here `_ if you encounter any issues. Uninstall --------- If you need to uninstall ROS2 or switch to a source-based install once you have already installed from binaries, run the following command: .. code-block:: bash sudo apt remove ~nros-humble-* && sudo apt autoremove You may also want to remove the repository: .. code-block:: bash sudo rm /etc/apt/sources.list.d/ros2.list sudo apt update sudo apt autoremove # Consider upgrading for packages previously shadowed. sudo apt upgrade