GithubHelp home page GithubHelp logo

ref-ras / arm_commander Goto Github PK

View Code? Open in Web Editor NEW
4.0 0.0 0.0 14.01 MB

The Arm Commander is a library providing an enhanced interface for robot arm manipulation. It is designed to wrap around a robot arm movement planner (i.e. robotic manipulation platforms) such as Moveit

Home Page: https://ref-ras.github.io/arm_commander

License: BSD 3-Clause "New" or "Revised" License

CMake 0.33% Python 97.59% Dockerfile 2.07%
motion-planning moveit robotic-manipulator robotics robotics-programming

arm_commander's Introduction

The Arm Commander

QUT REF Collection License

Robotics and Autonomous Systems Group, Research Engineering Facility, Research Infrastructure Queensland University of Technology

Introduction

The Arm Commander is a Python programming module for accelerating the development of robot arm manipulation applications.

Demo Animation

Use the Documentation Entry Point to bring you to following parts of the documentation of the arm commander.

  • Overview of the Arm Commander
  • Installation Guide
  • Programming Tutorial Part 1
  • Programming Tutorial Part 2
  • Application Design Gallery
  • Summary of the API

Robot Arm Programming with the Arm Commander

The arm commander presents a programming interface dedicated to robot arm manipulation and encapsulates useful but tedious programming components such as ROS and arm movement planning. The arm commander can support the development of applications using or not using ROS. The following example uses the arm commander API to move the end-effector of the robot arm panda_arm to the position (0.6, 0.0, 0.4), and then move it to another position (0.4, 0.2, 0.4)

from arm_commander.commander_moveit import GeneralCommander

class ArmCommanderMoveExample():
    def __init__(self):
        # create the General Commander and wait for it being ready to service move commands
        arm_commander: GeneralCommander = GeneralCommander('panda_arm')
        arm_commander.spin(spin_in_thread=True)
        arm_commander.wait_for_ready_to_move()
        # send two move commands one after another
        arm_commander.move_to_position(x = 0.6, y = 0.0, z = 0.4, wait=True)
        arm_commander.reset_state()
        arm_commander.move_to_position(x = 0.4, y = 0.2, wait=True)
        arm_commander.reset_state()

Demo Animation

Developers

Dr Andrew Lui, Senior Research Engineer
Dr Dasun Gunasinghe, Senior Research Engineer
Robotics and Autonomous Systems, Research Engineering Facility
Research Infrastructure
Queensland University of Technology

Latest update: Feb 2024

arm_commander's People

Contributors

andrewluiqut avatar

Stargazers

 avatar  avatar  avatar  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.