All Projects → ros-industrial → Abb_experimental

ros-industrial / Abb_experimental

Licence: apache-2.0
Experimental packages for ABB manipulators within ROS-Industrial (http://wiki.ros.org/abb_experimental)

Labels

Projects that are alternatives of or similar to Abb experimental

Nonstd Lite
Parent of *-lite repositories, a migration path to post-C++11 features for pre-C++11 environments
Stars: ✭ 46 (-24.59%)
Mutual labels:  cmake
Cmake Demo
《CMake入门实战》源码
Stars: ✭ 1,071 (+1655.74%)
Mutual labels:  cmake
Cxxctp
DEPRECATED. USE INSTEAD github.com/blockspacer/flextool
Stars: ✭ 58 (-4.92%)
Mutual labels:  cmake
Run Vcpkg
GitHub Action to automatically cache and run vcpkg to build C++ dependencies for your C++ based applications. Available as Azure DevOps tasks also: https://marketplace.visualstudio.com/items?itemName=lucappa.cmake-ninja-vcpkg-tasks
Stars: ✭ 49 (-19.67%)
Mutual labels:  cmake
Fast ber
A C++11 ASN.1 BER Encoding and Decoding Library
Stars: ✭ 54 (-11.48%)
Mutual labels:  cmake
Vector ros
ROS package for Anki Vector home robot
Stars: ✭ 55 (-9.84%)
Mutual labels:  cmake
Regrader
VST delay plugin where the repeats degrade in resolution
Stars: ✭ 44 (-27.87%)
Mutual labels:  cmake
Wtoolsdkroomlive
微控工具xp模块-开发版[微信(wechat)二次开发模块]sdk微信多群直播demo
Stars: ✭ 60 (-1.64%)
Mutual labels:  cmake
Cmake Cookbook
CMake Cookbook recipes.
Stars: ✭ 1,073 (+1659.02%)
Mutual labels:  cmake
Foxy
Session-based Beast/Asio wrapper requiring C++14
Stars: ✭ 57 (-6.56%)
Mutual labels:  cmake
Antara Gaming Sdk
Komodo Gaming Software Development Kit
Stars: ✭ 51 (-16.39%)
Mutual labels:  cmake
Sdl vulkan
A library for creating Vulkan surfaces for SDL2 windows.
Stars: ✭ 53 (-13.11%)
Mutual labels:  cmake
Cxp
Lightweight & minimal project template using "modern" CMake
Stars: ✭ 56 (-8.2%)
Mutual labels:  cmake
Bcm
Boost cmake modules
Stars: ✭ 48 (-21.31%)
Mutual labels:  cmake
Urdf tutorial
Stars: ✭ 58 (-4.92%)
Mutual labels:  cmake
Cpp starter project
A template CMake project to get you started with C++ and tooling
Stars: ✭ 1,025 (+1580.33%)
Mutual labels:  cmake
Sdl kitchensink
A Simple SDL2 / FFmpeg library for audio/video playback written in C99
Stars: ✭ 53 (-13.11%)
Mutual labels:  cmake
Gr Adsb
GNU Radio OOT module for demodulating and decoding ADS-B packets
Stars: ✭ 61 (+0%)
Mutual labels:  cmake
Cmake Get
Get dependencies with cmake
Stars: ✭ 59 (-3.28%)
Mutual labels:  cmake
Run Cmake
GitHub Action to build C++ applications with CMake (either with CMakeLists.txt or CMakeSettings.json), Ninja and vcpkg on GitHub. Available as Azure DevOps task also: https://marketplace.visualstudio.com/items?itemName=lucappa.cmake-ninja-vcpkg-tasks
Stars: ✭ 57 (-6.56%)
Mutual labels:  cmake

ABB Experimental

Build Status: Travis CI Github Issues

license - apache 2.0 license - bsd 3 clause

support level: community

ROS-Industrial ABB experimental meta-package. See the ROS wiki page for more information.

Contents

This repository contains packages that will be migrated to the abb repository after they have received sufficient testing. The contents of these packages are subject to change, without prior notice. Any available APIs are to be considered unstable and are not guaranteed to be complete and / or functional.

Branch naming follows the ROS distribution they are compatible with. -devel branches may be unstable.

Naming Convention

All robot support packages and MoveIt configurations follow the naming conventions as described in REP-I0007.

Installation

As this repository contains experimental packages, no binary packages are available.

Instead, follow the instructions to build them in a Catkin workspace shown in the next section.

Building

On newer (or older) versions of ROS

Building the packages on newer (or older) versions of ROS is in most cases possible and supported. For example: building the packages in this repository on Ubuntu Xenial/ROS Kinetic or Ubuntu Bionic/ROS Melodic systems is supported. This will require creating a Catkin workspace, cloning this repository, installing all required dependencies and finally building the workspace.

Catkin tools

It is recommended to use catkin_tools instead of the default catkin when building ROS workspaces. catkin_tools provides a number of benefits over regular catkin_make and will be used in the instructions below. All packages can be built using catkin_make however: use catkin_make in place of catkin build where appropriate.

Building the packages

The following instructions assume that a Catkin workspace has been created at $HOME/catkin_ws and that the source space is at $HOME/catkin_ws/src. Update paths appropriately if they are different on the build machine.

These instructions build the kinetic-devel branch on a ROS Kinetic system:

# change to the root of the Catkin workspace
$ cd $HOME/catkin_ws

# retrieve the latest development version of the abb repository. If you'd rather
# use the latest released version, replace 'kinetic-devel' with 'kinetic'
$ git clone -b kinetic-devel https://github.com/ros-industrial/abb.git src/abb
# retrieve the latest development version of abb_experimental
$ git clone -b kinetic-devel https://github.com/ros-industrial/abb_experimental.git src/abb_experimental

# check build dependencies. Note: this may install additional packages,
# depending on the software installed on the machine
$ rosdep update

# be sure to change 'kinetic' to whichever ROS release you are using
$ rosdep install --from-paths src/ --ignore-src --rosdistro kinetic

# build the workspace (using catkin_tools)
$ catkin build

Activating the workspace

Finally, activate the workspace to get access to the packages just built:

$ source $HOME/catkin_ws/devel/setup.bash

At this point all packages should be usable (ie: roslaunch should be able to auto-complete package names starting with abb_..). In case the workspace contains additional packages (ie: not from this repository), those should also still be available.

Installation and usage

Refer to Working With ROS-Industrial Robot Support Packages for information on how to use the files provided by the robot support and MoveIt configuration packages. See also the other pages on the ROS wiki.

Refer to the tutorials for information on installation and configuration of the controller-specific software components.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].