Giter Club home page Giter Club logo

ar3_core's Introduction

AR3 Core Software

This repository provides the software for control of the AR3 arm with ros_control and MoveIt. I hope to provide fellow robotic arm enthusiasts with a starting point to explore using ROS for controlling the arm. The baseline implementation is designed to accomodate the original hardware and firmware, including the message structures for communication. Moving forward, I will do my best to continue to keep it accessible. I plan to explore some interesting concepts that I have in mind for on-arm vision, grippers and human-robot interaction and I will share my projects here if possible.

You may also wish to check out some hardware modifications that I've made for joint encoders at ar3_hardware_mods.

Overview

  • ar3_control

    • Controlling the arm through the MoveIt user interfaces
    • Provides demo for the move group interface
  • ar3_description

    • Hardware description of arm, urdf etc.
  • ar3_hardware_interface

    • ROS interface for the hardware driver, built on the ros_control framework
    • Manages joint offsets, limits and conversion between joint and actuator messages
  • ar3_hardware_drivers

    • Handles communication with the motor controllers
  • ar3_microcontrollers

    • Firmware for the motor controller ie. Teensy
  • ar3_moveit_config

    • MoveIt module for motion planning
    • Controlling the arm through Rviz
  • ar3_gazebo

    • Simulation on Gazebo

Installation

Actively developed and tested on ROS Melodic on Windows 10 with limited testing on Ubuntu 18.04.

Windows

  • Install ROS Melodic and MoveIt for Windows 10

  • Create the ROS workspace ie. ar3_ws

    md C:\ar3_ws\src && C:\ar3_ws\src
    
  • Clone this repository into the workspace src:

    git clone https://github.com/ongdexter/ar3_core.git .
    

    The workspace directory should be as such:

    ar_ws
    +-- src
    |   +-- ar3_control
    |   +-- ar3_description
    |   +-- ...
    
  • Build the workspace:

    cd ~/ar3_ws
    catkin_make
    
  • Source the workspace

    call C:\ar3_ws\setup.bat
    

    You can add this to the ROS Command Window shortcut that you created during the ROS installation, by appending && c:\ar3_ws\devel\setup.bat to the shortcut target, so that it is automatically run each time a new terminal is opened.


Ubuntu

  • Install ROS Melodic and MoveIt for Ubuntu 18.04

  • Create the ROS workspace ie. ar3_ws

    mkdir -p ~/ar3_ws/src && cd "$_"
    
  • Clone this repository into the workspace src:

    git clone https://github.com/ongdexter/ar3_core.git .
    

    The workspace directory should be as such:

    ar_ws
    +-- src
    |   +-- ar3_control
    |   +-- ar3_description
    |   +-- ...
    
  • Install workspace dependencies:

    cd ~/ar3_ws
    rosdep install --from-paths src --ignore-src -r -y
    
  • Build the workspace:

    catkin_make
    
  • Source the workspace:

    source ~/ar3_ws/devel/setup.bash
    

    You can add this to your .bashrc so that it is automatically run each time a new terminal is opened:

    echo "source ~/ar3_ws/devel/setup.bash" >> ~/.bashrc
    
  • Enable serial port access if you haven't already done so:

    sudo addgroup $USER dialout
    

    You will need to log out and back in for changes to take effect.

Setup

  • Hardware interface

    • Set the serial port and baudrate in ar3_hardware_interface/config/hardware_driver.yaml
  • Teensy Sketch

    • Both teensy sketches provided are compatible with the default hardware. Refer to the module for more information.

Usage

There are two modules that you will always need to run:

  1. Arm module - this can be for either a real-world or simulated arm

    • For controlling the real-world arm, you will need to run the ar3_hardware_interface module
    • For the simulated arm, you will need to run the ar3_gazebo module
    • Either of the modules will load the necessary hardware descriptions for MoveIt
  2. MoveIt module - the ar3_moveit_config module provides the MoveIt interface and RViz GUI, and the ar3_control module provides the MoveIt user interface for programmatically setting goals

The various use cases of the modules and instructions to run them are described below:


MoveIt Demo in RViz

If you are unfamiliar with MoveIt, it is recommended to start with this to explore planning with MoveIt in RViz. This contains neither a real-world nor a simulated arm but just a model loaded within RViz for visualisation.

  • The robot description, moveit interface and RViz will all be loaded in the single demo launch file
    roslaunch ar3_moveit_config demo.launch
    

Control real-world arm with MoveIt in RViz

  • Start the ar3_hardware_interface module, which will load configs and the robot description

    roslaunch ar3_hardware_interface ar3_hardware_bringup.launch
    

    The hardware interface will also start the hardware driver and initialise communication with the Teensy. You can skip the joint encoder calibration sequence with the use_existing_calibrations argument when starting the node
    ie. roslaunch ar3_hardware_interface ar3_hardware_bringup.launch use_existing_calibrations:=true.

  • Start MoveIt and RViz

    roslaunch ar3_moveit_config ar3_moveit_bringup.launch
    

You can now plan in RViz and control the real-world arm. Joint commands and joint states will be updated through the hardware interface.


Control simulated arm in Gazebo with MoveIt in RViz

  • Start the ar3_gazebo module, which will start the Gazebo simulator and load the robot description
    roslaunch ar3_gazebo ar3_gazebo_bringup.launch
    
  • Start Moveit and RViz
    roslaunch ar3_moveit_config ar3_moveit_bringup.launch
    

You can now plan in RViz and control the simulated arm.


Control arm with Move Group Interface

It is recommended to run this demo with the simulated arm first to make sure that the programmed goals are safe for your environment (and your arm). Needless to say, the same applies when programming your own tasks.

This is a demo modified from the official MoveIt tutorials. As opposed to manually setting goals through RViz, the move group interface allows us to programmatically plan and execute movements, and provides more functionality such as specifying path constraints and planning Cartesian movements. This also enables much more complex tasks, planning around obstacles etc.

  • Start the ar3_gazebo module, which will start the Gazebo simulator and load the robot description
    For controlling the real-world arm, you will just need to run ar3_hardware_interface instead of ar3_gazebo as described above.
    roslaunch ar3_gazebo ar3_gazebo_bringup.launch
    
  • Start Moveit and RViz
    roslaunch ar3_moveit_config ar3_moveit_bringup.launch
    
  • Start the move group demo
    roslaunch ar3_control move_group_demo.launch
    
    Follow the command-line instructions to step through the demo. See ar3_control for more details.

ar3_core's People

Contributors

ongdexter avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.