MMP Husky TUHH ============== .. image:: media/pictures/husky_side_view3.webp :width: 100% :align: center :class: mbsrounded | Getting Started --------------- To start-up the Husky, the `instructional video playlist `__ can be used which details the opening and use of the Husky. 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 `__ 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 `__ Pre-requisite Software ---------------------- .. _ROS Noetic: http://wiki.ros.org/noetic/Installation .. _Ubuntu 20.04: https://releases.ubuntu.com/20.04/ .. _Ubuntu 20.04 Installation: https://ubuntu.com/server/docs/installation .. _MBS Husky-xARM6-Robotiq: https://github.com/MYBOTSHOP/husky_xarm_robotiq_installer .. image:: media/common/ros_noetic.png :width: 100% :align: center :class: mbsrounded | The ROS driver for the robots is initially supported for the ``ROS Noetic``. 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. PC Setup -------- `ROS Noetic`_ installation requires Ubutnu 20.04. 1. Download `Ubuntu 20.04`_ 2. Follow the `Ubuntu 20.04 Installation`_ guide ROS-noetic Installation ~~~~~~~~~~~~~~~~~~~~~~~~ The ros driver provided can be run either on a remote PC or on board robot computer. Usually, the on-board computer already has pre-installed ROS distribution, so the instructions below will be applicable to a remote computer. You may run the following commands to install ROS noetic or you can simply follow the `instructions `_ from the roswiki. 1. Enter the Ubuntu terminal and typie in the following command: .. code:: bash cd 2. The next step is setting up the source list: .. code:: bash sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list' 3. After which you will set up the keys: .. code:: bash sudo apt install curl curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add - 4. Then, you will install ROS-noetic: .. code:: bash sudo apt update sudo apt install ros-noetic-desktop-full 5. Finally, you will add ROS environment to your bash file, what this means is that each time you load up your terminal, it will automatically find the built-in ROS packages. .. code:: bash echo "source /opt/ros/noetic/setup.bash" >> ~/.bashrc source ~/.bashrc 6. Install python dependencies and initialize repo: .. code:: bash sudo apt install python3-rosdep python3-rosinstall python3-rosinstall-generator python3-wstool build-essential sudo rosdep init rosdep update Once the ROS packages are set-up the next step would be to set up a workspace in which you can add pre-built packages to control your robot. Catkin Workspace ~~~~~~~~~~~~~~~~ 1. The first step is to ensure that you have correctly setup you ROS noetic. It can be checked by: .. code:: bash cd .. source /opt/ros/noetic/setup.bash 2. Next, install catkin_tools: .. code:: bash sudo apt install python3-catkin-tools 3. The next step is to create, your workspace. This is typically created in the home directory following the standard ROS convention, once built, you should see a ``build`` and ``devel`` folder next to your ``src`` folder: .. code:: bash mkdir -p ~/catkin_ws/src cd ~/catkin_ws/ catkin build 4. To enable the workspace, you must type in: .. code:: bash source devel/setup.bash 5. To avoid typing this everytime you start a terminal, you’ll add this into the ``last line`` of the bashrc file: .. code:: bash gedit ~/.bashrc - Add the following line at the end of the bashrc file: .. code:: bash source /home//catkin_ws/devel/setup.bash - Everytime you do a ``catkin build``, it is necessary to either restart all your terminals, or source them. - To verify that everything is working correctly, type the following into the terminal: .. code:: bash echo $ROS_PACKAGE_PATH Installation ------------ The package is designed to work on the Husky. To install the package simply download it from the `MBS Husky-xARM6-Robotiq`_ github repo. * Give root permission to the installation script via .. code:: bash sudo chmod +x Installation_script.bash * Run the script from the terminal via .. code:: bash ./Installation_script.bash * Provide the workspace name as ``catkin_ws`` * Provide the directory as ``/home/administrator``. .. note:: In case the username is not administrator then manual changes will have to be made in the startup job. Network Setup ~~~~~~~~~~~~~ To set up a connection to the Husky, please follow the provided guidelines: #. Connect an Ethernet cable from your Host PC to the Ethernet port of the Husky. #. Next in your Host PC, create a static connection from your network manager with an ip of ``192.168.131.51``. For the netmask, use ``255.255.255.0``. #. Once the static connection is setup correctly, one can ``ssh`` into the on-board PC as described below. To ssh, enter the command terminal and enter the following: .. code-block:: bash ssh -X administrator@192.168.131.1 The password is: .. code-block:: bash clearpath .. attention:: The first port of the Husky is configured with the static ip ``192.168.131.1``, others have been left dynamic for internet access. .. image:: media/pictures/ethernet_connection.jpg :alt: Husky custom pc ethernet connection :width: 50% :align: center :class: mbsrounded | Network tables ~~~~~~~~~~~~~~ .. table:: Husky-xARM6-Robotiq network devices ============= =============== Device Network Address ============= =============== Husky 192.168.131.1 xARM6 192.168.132.1 ============= =============== .. _RST Husky-xARM6-Robotiq Start-up: Start-up -------- .. image:: media/pictures/husky_side_view3.jpg :width: 100% :align: center :class: mbsrounded | When the Husky is powered-on, the ``mbs_husky`` robot upstart job starts the ros hardware drivers for the Husky. Startup Example --------------- .. figure:: media/gifs/husky_viz.gif :width: 100% :align: center :class: mbsrounded A 40 second video illustrating the activation of the visualization module, xARM6 hardware driver, and the Robotiq gripper driver. Powering xARM6 ~~~~~~~~~~~~~~ * ssh into the husky. .. code-block:: bash ssh -X administrator@192.168.131.1 clearpath * To power-on the ``xARM6`` .. code-block:: bash rostopic pub /pwr_relay std_msgs/Bool "data: true" --once * To power-off the ``xARM6`` .. code-block:: bash rostopic pub /pwr_relay std_msgs/Bool "data: false" --once .. important:: It takes approximately *60 seconds* for the arm to power up. On start-up a **beep** sound can be heard. After *60 seconds* two consecutive **beep** sounds can be heard indicating that the xARM6 has successfully started and can be accessed. Hardware drivers xARM6 ~~~~~~~~~~~~~~~~~~~~~~ * To launch the xARM6 hardware driver, run the command: .. code:: bash roslaunch mbs_xarm_robotiq xarm_hardware_driver.launch Hardware drivers Robotiq Gripper 2f-140 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * To launch the Robotiq 2f-140 hardware driver, run the command: .. code:: bash roslaunch mbs_xarm_robotiq robotiq_hardware_driver.launch Visualization ~~~~~~~~~~~~~ * The visualize the robot model. .. code-block:: bash roslaunch mbs_viz viz.launch .. figure:: media/pictures/husky_xarm_robotiq_viz1.png :width: 100% :align: center :class: mbsrounded Husky xARM6 URDF MBS Husky Startup ----------------- The launch file ``mbs_husky.launch`` includes everything which is being launched at the startup. This file can be updated to include all the nodes needed to run at the startup (e.g. your own packages). Startup job and its contents can be verified in the directory ``/etc/ros/noetic``; here the original launch file will be copied. .. important:: Do not create multiple startup jobs with multiple launch files this will break the system. Only one launch file should be created and everything else should be included in this. If the systems breaks at startup you can start debugging by: .. code:: bash roslaunch mbs_husky_startup mbs_husky.launch This will show which part of the launch file is having errors or you can start running everything in the launch file one by one in separate terminals. .. note:: Once you add your custom node or launch files in the ``mbs_husky.launch``, you will need to run the following script so that it updates the start-up job on the Husky's PC; to run with the newly updated ``mbs_husky.launch``. .. code:: bash rosrun mbs_husky_startup startup_script.sh MBS Viz ~~~~~~~ The ``mbs_viz`` package will be the primary viewing tool for the robot. It is launched via: .. code:: bash roslaunch mbs_viz viz.launch .. important:: At start-up only the Husky and Phidgets IMU hardware drivers are running, whilst the Husky-xARM6-Robotiq and the Robotiq gripper are both powered-off, due to which only the Husky will be displayed. Once the xARM6 and the Robotiq hardware drivers are powered on then, they will show up in the rviz display. .. figure:: media/pictures/husky_xarm_robotiq_viz2.png :width: 100% :align: center :class: mbsrounded RVIZ display for the Husky-xARM6-Robotiq MBS Husky Description ~~~~~~~~~~~~~~~~~~~~~ The launch file ``description.launch`` includes a custom URDF that has the Husky, xARM6, Phidgets imu, and Robotiq 2f-140 gripper integrated into it. It simply uses the :roswiki:`robot_state_publisher` to publish the static joints of the robot. It is automatically launched via the startup job. To launch it manually, it can be done via: .. code:: bash roslaunch mbs_husky_description description.launch The ``bringup.launch`` launches the description launch file as well as the fake joint state publishers from :roswiki:`joint_state_publisher_gui`. It can be used for visualization when not connected to the robot or for debugging the URDF. It can be launched via: .. code:: bash roslaunch mbs_husky_description bringup.launch .. _RST MBS_XARM_ROBOTIQ: MBS xARM Robotiq ---------------- The ``mbs_xarm_robotiq`` package is used to turn on the hardware drivers for the xARM6 and the Robotiq gripper. xARM6 ~~~~~ .. figure:: media/gifs/xarm.gif :width: 100% :align: center :class: mbsrounded xARM6 Ensure that the xARM6 is powered-on by following the :ref:`RST Husky-xARM6-Robotiq Start-up`. * To launch the xARM6 hardware driver, run the command: .. code:: bash roslaunch mbs_xarm_robotiq xarm_hardware_driver.launch * To launch a stand-alone moveit planner for the xARM6: .. code:: bash roslaunch mbs_xarm_robotiq xarm_standalone_moveit.launch .. note:: Currently, for the ``xarm_standalone_moveit.launch`` the xARM6, is only valid. The gripper has not yet been configured to work with it in the moveit planner. For more information on how to use this, you may check the :roswiki:`moveit_setup_assistant`. Robotiq Gripper 2f-140 ~~~~~~~~~~~~~~~~~~~~~~ .. figure:: media/gifs/robotiq.gif :width: 100% :align: center :class: mbsrounded Robotiq Gripper 2f-140 Ensure that the xARM6 is powered-on by following the :ref:`RST Husky-xARM6-Robotiq Start-up`. * To launch the Robotiq 2f-140 hardware driver, run the command: .. code:: bash roslaunch mbs_xarm_robotiq robotiq_hardware_driver.launch The hardware driver launches an action-client server as well as a joint-state publisher for the gripper. An example on how to communicate with the gripper is available in the ``mbs_xarm_robotiq/nodes/test_robotiq_gripper.py`` Power-relay ----------- .. |power_relay_1| image:: media/pictures/HUSKY_TUHH_24V_Power_3D.png :class: mbsrounded .. |power_relay_2| image:: media/pictures/HUSKY_TUHH_24V_Power_Board.png :class: mbsrounded Power-relay Status ~~~~~~~~~~~~~~~~~~ When the robot starts, an Arduino starts.This Arduino controls a power relay via the main PC in the husky. A startup script starts the communication between the Arduino and the main PC in the husky. To check the status of this module, the following steps are to be performed: 1. Connecting to the robot via Ethernet as described: .. code-block:: bash ssh -X administrator@192.168.131.1 clearpath 2. Next, we can check the status of the power-relay node via: .. code-block:: bash sudo service mbs_husky status .. note:: If the icon is green, it means that the packages have started without any issues. In the event of an error, you may restart this startup job via: .. code-block:: bash sudo service mbs_husky restart 3. To **power-on** the relay, run the command: .. code-block:: bash rostopic pub /pwr_relay std_msgs/Bool "data: true" .. note:: An audible click can be heard of the switching relay.One ROS message needs to go through after which you may cancel the publisher ``ctrl+c``. 4. To **power-off** the relay, run the command: .. code-block:: bash rostopic pub /pwr_relay std_msgs/Bool "data: false" .. attention:: The rostopic that subscribes to this is the ``/pwr_relay`` and it accepts Boolean messages ``std_msgs/Bool``. +--------------------------+--------------------------+ + |power_relay_1| + |power_relay_2| + +--------------------------+--------------------------+ + Arduino Nano + Arduino Nano Connections + +--------------------------+--------------------------+ Power-relay Technical Specification ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The Arduino is activating the ``24V`` DC battery power on the ``XT60`` connector. A ``20amps`` fuse ensures that the cables and the installed electronics are not damaged. Furthermore, the voltage applied to the ``XT60`` connector can vary depending on the battery capacity, since no voltage converter or something similar is integrated. The Arduino is connected to the ``/dev/ttyUSB0`` port. .. warning:: The Red/Black 2,5mm\ :sup:`2` cable inside the Husky, which is going to the ``24V`` external power control box is always **live** as the battery power is continuously supplied. .. figure:: media/pictures/HUSKY_TUHH_24V_Power_Board_Schematic.png :width: 100% :scale: 100% :align: center :class: mbsrounded Power-board schematic Phidget IMU ----------- .. figure:: media/pictures/phidgets_imu.jpg :width: 100% :scale: 100% :align: center :class: mbsrounded Phidgets IMU Phidgets Start-up ~~~~~~~~~~~~~~~~~ When the robot starts, the Phidget's IMU starts via a startup script. To check the status of this module, the following steps are to be performed: 1. Connecting to the robot via Ethernet as described: .. code:: bash ssh -X administrator@192.168.131.1 clearpath 2. Next, we can check the status of the Phidget's IMU via: .. code:: bash sudo service mbs_husky status .. important:: If the icon is green, it means that the packages has started without any issues. In the event of an error, you may restart this startup job via: .. code:: bash sudo service mbs_husky restart 3. To check the linear accelerations and angular velocities: .. code:: bash rostopic echo /IMU/data_raw .. attention:: This topic does not include orientations. For more information on orientation please refer to the :roswiki:`phidgets_imu` . 4. To check magnetic orientation: .. code:: bash rostopic echo /IMU/mag 5. More information is available on :roswiki:`phidgets_imu` . * To check the orientation on rviz, be sure to use use the IMU visualization plugin. .. code:: bash roslaunch mbs_husky_description description.launch 6. Calibration must be done as instructed in the wiki according to the location. The Phidgets is connected to the ``/dev/ttyUSB1`` port. Husky ----- .. image:: media/gifs/husky_nav.gif :width: 100% :align: center :class: mbsrounded | .. note:: As the MYBOTSHOP Husky-xARM6-Robotiq is a multi-robot system consisting of Clearpath's Husky, hence, the guide provided by Clearpath for `Husky Navigation`_ is applicable. For ease of view, the guide is available below as well. Below are the example launch files for three different configurations for navigating Husky: - Navigation in an odometric frame without a map, using only :roswiki:`move_base`. - Generating a map using :roswiki:`gmapping`. - Localization with a known map using :roswiki:`amcl`. If you're working with a real Husky, it's suggested to connect via SSH and launch the :roswiki:`husky_navigation` launchfiles from on board the robot. You'll need to have bidirectional communication with the robot's roscore in order to launch :roswiki:`rviz` on your workstation. .. important:: It should be noted that without any auxiliary components such as a camera or lidar, the robot will not be able to perform obstacle avoidance or mapping. Navigation Without a Map ~~~~~~~~~~~~~~~~~~~~~~~~ In the odometry navigation demo Husky attempts to reach a given goal in the world within a user-specified tolerance. The 2D navigation, generated by move_base, takes in information from odometry, laser scanner, and a goal pose and outputs safe velocity commands. In this demo the configuration of move_base is set for navigation without a map in an odometric frame (that is, without reference to a map). To get all Navigation related files for Husky, run: .. code-block:: bash sudo apt-get install ros-noetic-husky-navigation To launch the navigation demo, run: .. code-block:: bash roslaunch husky_navigation odom_navigation_demo.launch To visualize with the suggested rviz configuration launch: .. code-block:: bash roslaunch mbs_viz viz.launch .. note:: Add the topic of :code:`/points` to visualize the point clouds as well. To send goals to the robot, select the *2D Nav Goal* tool from the top toolbar, and then click anywhere in the rviz view to set the position. Alternatively, click and drag slightly to set the goal position and orientation. If you wish to customize the parameters of move_base, local costmap, global costmap and base_local_planner, clone :roswiki:`husky_navigation` into your own workspace and modify the corresponding files in the `params` subfolder. Making a Map ~~~~~~~~~~~~ In this demonstration, Husky generates a map using gmapping. Begin by launch the gmapping launch file on the robot: .. code-block:: bash roslaunch husky_navigation gmapping_demo.launch And on your workstation, launch rviz with the suggested configuration: .. code-block:: bash roslaunch husky_viz view_robot.launch config:=gmapping You must slowly drive Husky around to build the map. As obstacles come into view of the laser scanner, they will be added to the map, which is shown in rviz. You can either drive manually using the interactive markers, or semi-autonomously by sending navigation goals. When you're satisfied, you can save the produced map using map_saver_: .. code-block:: bash rosrun map_server map_saver -f mymap This will create a ``mymap.yaml`` and ``mymap.pgm`` file in your current directory. .. _map_saver: http://wiki.ros.org/map_server#map_saver Navigation With a Map ~~~~~~~~~~~~~~~~~~~~~ Using :roswiki:`amcl`, Husky is able to globally localize itself in a known map. AMCL takes in information from odometry, laser scanner and an existing map and estimates the robot's pose. To start the AMCL demo: .. code-block:: bash roslaunch husky_navigation amcl_demo.launch [map_file:=/path/to/my/map.yaml] If you don't specify ``map_file``, it defaults to an included pre-made map of the default "Husky Race" environment which Husky's simulator spawns in. If you're using a real Husky in your own environment, you'll definitely want to override this with the map created using the gmapping demo. Before navigating, you need to initialize the localization system by setting the pose of the robot in the map. This can be done using 2D Pose Estimate in rviz or by setting the amcl initial_pose parameters. To visualize with the suggested rviz configuration launch: .. code-block:: bash roslaunch husky_viz view_robot.launch config:=localization When rviz appears, select the *Set 2D Pose tool* from the toolbar, and click on the map to indicate to the robot approximately where it is. .. _Husky Navigation: http://www.clearpathrobotics.com/assets/guides/noetic/husky/ xARM6 ----- xARM6-Guide ~~~~~~~~~~~ .. _xARM6 user manual: https://cdn.shopifycdn.net/s/files/1/0012/6979/2886/files/xArm_User_Manual-V1.8.6.pdf?v=1637922270 .. _xARM6 developer manual: https://cdn.shopify.com/s/files/1/0012/6979/2886/files/xArm_Developer_Manual-V1.8.5.pdf?v=1639127867 .. _xARM6 tutorials: https://youtube.com/playlist?list=PLvciccMYGISk1XDTny_v0Ch03QuHNKoYs .. _Robotiq 2f-140 manual: https://assets.robotiq.com/website-assets/support_documents/document/2F-85_2F-140_General_PDF_20210623.pdf?_ga=2.201990357.51230788.1653473411-1379069650.1649070508 .. figure:: media/pictures/husky_fv3.jpg :alt: xARM6 :width: 100% :scale: 100% :align: center :class: mbsrounded xARM6 integrated into Husky with a Robotiq 2f-140 gripper .. note:: As the Husky-xARM6-Robotiq is a multi-robot system consisting of xARM6 and robotiq gripper, hence, the `xARM6 tutorials`_, `xARM6 user manual`_ , `xARM6 developer manual`_ and the `Robotiq 2f-140 manual`_ are applicable. To power-on the xARM6 please follow the :ref:`RST Husky-xARM6-Robotiq Start-up` section. xARM6 DC Control Box ~~~~~~~~~~~~~~~~~~~~ The control box for the xARM6 is mounted in rear compartment of the Husky. .. figure:: media/pictures/DC_control_box.jpg :width: 100% :scale: 100% :align: center :class: mbsrounded | xARM6-ROS ~~~~~~~~~ For the xARM6 ROS drivers please refer to the :ref:`RST MBS_XARM_ROBOTIQ` section. xARM6-Utilities ~~~~~~~~~~~~~~~ To operate the xARM6 from other means then ROS, the python and c++ sdks are available in the utils folder in the provided package. Moreover, direct control of the xARM6 is available via the app. To access the app, navigate into the ``/utils/app`` folder and run the command: .. code-block:: bash ./xArmStudio-linux-0.6.0.AppImage This should launch the xARM6. Connect to the IP address of ``192.168.132.1`` and you should have now complete access to the arm. Also the app has a built-in plugin to interface with robotiq gripper available in the control panels. .. important:: The app can also be accessed via ssh. .. code-block:: bash ssh -X administrator@192.168.131.1 clearpath cd cd catkin_ws/utils/app ./xArmStudio-linux-0.6.0.AppImage Robotiq Gripper 2f-140 ---------------------- .. figure:: media/gifs/robotiq.gif :width: 100% :align: center :class: mbsrounded Robotiq Gripper 2f-140 .. attention:: The robotiq gripper does all communication via the xARM6. Hence, the xARM6 must be powered on for the gripper to work. Robotiq Gripper 2f-140 ROS ~~~~~~~~~~~~~~~~~~~~~~~~~~ For the robotiq ROS drivers please refer to the :ref:`RST MBS_XARM_ROBOTIQ` section.