Giter Club home page Giter Club logo

robotis-scad's Introduction

robotis-scad

Tools to create frame connecting XL320 motors and various elements from the OLLO framework from Robotis. Most tools are based on segment-scad, an OpenScad library to create parametrable and linkable segments.

Dependencies:

Get started:

mkdir myfolder
cd myfolder
git clone https://github.com/jgrizou/MCAD
git clone https://github.com/jgrizou/segment-scad
git clone https://github.com/jgrizou/robotis-scad

The repository is divided in five folders:

  • The ollo folder contains constants and tools related to the OLLO framework, such as holes for rivets, thickness of elements.
  • The dynamixel folder contains constants and tools for the XL320 motors.
  • The ollo_segments folder contains a specialization of the segment-scad tools. Typically segment with predefined width, thickness, and holes.
  • The frames folder is the most useful one, it contains ready to use frames for connecting XL320 motors in various ways.
  • The specific_frames folder contains more specific frame that are used for various robots.

Each *_frame.scad file contains function for a specific type of frame. Each frame file contains small examples at the end of the file, the simplest way to run it is to open the file in OpenScad.

Most frames comes with a function starting by add_* which creates the frame and add the forthcoming segments at the opposite side of the frame.

You are invited to look and play with the code for more details, function names and arguments are usually self-explanatory. Please check the poppy-ergo-jr project to see examples of how to use these tools. Below are example of code for each frame and pictures of the resulting 3D parts.

Frames

use <dynamixel/xl320.scad>
use <frames/horn_to_horn_frame.scad>

rotate([0,90,0])
  xl320_two_horns();
horn_to_horn_frame(50);

horn_to_horn_frame

use <dynamixel/xl320.scad>
use <frames/side_to_side_frame.scad>

rotate([0,0,180]) xl320();
add_side_to_side_frame(100,2)
  xl320();

side_to_side_frame

include <ollo/ollo_def.scad>

use <dynamixel/xl320.scad>
use <frames/three_ollo_frame.scad>

xl320();
add_three_ollo_frame(50)
translate([0,4*OlloSpacing,0])
  rotate([0,-90,0])
    xl320();

three_ollo_frame

use <dynamixel/xl320.scad>
use <frames/three_ollo_to_horn_frame.scad>

xl320();
add_three_ollo_to_horn_frame(length=30, nLayer=1)
  rotate([0,90,180])
    xl320_two_horns();

three_ollo_to_horn_frame

use <../dynamixel/xl320.scad>
use <frames/U_horn_frame.scad>

xl320_two_horns();
  U_horn_frame(20);

U_horn_frame

include <ollo/ollo_def.scad>
include <dynamixel/xl320_def.scad>

use <dynamixel/xl320.scad>
use <frames/U_horn_to_horn_frame.scad>

xl320_two_horns();
add_U_horn_to_horn_frame(20)
  translate([0,MotorWidth/2+OlloLayerThickness,0])
    rotate([90,0,0])
      xl320();

U_horn_to_horn_frame

use <../dynamixel/xl320.scad>
use <frames/U_horn_to_U_horn_frame.scad>

xl320_two_horns();
  add_U_horn_to_U_horn_frame(50)
    rotate([0,0,180])
      xl320_two_horns();

U_horn_to_U_horn_frame

use <../dynamixel/xl320.scad>
use <frames/U_three_ollo_frame.scad>

xl320();
U_three_ollo_frame(15);

U_three_ollo_frame

include <ollo/ollo_def.scad>
include <dynamixel/xl320_def.scad>

use <dynamixel/xl320.scad>
use <frames/U_three_ollo_to_horn_frame.scad>

xl320();
add_U_three_ollo_to_horn_frame(15, 1.5)
  translate([0,MotorWidth/2+OlloLayerThickness,0])
    rotate([90,0,0])
      xl320();

U_three_ollo_to_horn_frame

Specific Frames

robotis-scad's People

Contributors

jgrizou avatar

Watchers

James Cloos 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.