Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lukicdarkoo/robotarm

Arduino library for Robot Arm control, positioning in 3D space
https://github.com/lukicdarkoo/robotarm

Last synced: 10 days ago
JSON representation

Arduino library for Robot Arm control, positioning in 3D space

Awesome Lists containing this project

README

        

RobotArm
========

Arduino library for Robot Arm control. It provides features like:
- Set angle of each crank easy,
- Set arm at specific coordinates,
- Smooth movements,
- Auto keep grabber parallel to surface...

REQUIREMENTS
------------

Arduino 1.0 or higher

INSTALATION
-----------

Just copy all files in **[Arduino path]/libraries**

EXAMPLE
-------

#include

RobotArm robotArm;

void setup() {
robotArm.attach();

robotArm.setCoordinates(10, 10, 0);
}

void loop() {
robotArm.update();
}