Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Arduino Due Main Controller #6

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
18 changes: 18 additions & 0 deletions Flexure test objects for mechanical tester/openscad/design 2.scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// print two object and join them by using a bolt it should be much stronger or using a bolt and superglue together is best.

$fn=30;
legth=40;
width=10;
height=10;
difference(){
union(){
cube([legth,width,height]); // horizontal cube.
translate([30,0,10])cube([legth-30,width,height*5]);//vertical cube
}
translate([5,width/2,0])cylinder(r=1.5*1.1,h=height*10);
translate([35,width/2,20])cylinder(r=1.5*1.1,h=height*10,center=true);
rotate([90,0,0])translate([27,1,0])cylinder(r=3,h=height*10,center=true);
rotate([90,0,0])translate([27,9,0])cylinder(r=3,h=height*10,center=true);
rotate([90,0,0])translate([13,1,0])cylinder(r=3,h=height*10,center=true);
rotate([90,0,0])translate([13,9,0])cylinder(r=3,h=height*10,center=true);
}
23 changes: 23 additions & 0 deletions Flexure test objects for mechanical tester/openscad/design1..scad
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
$fn=30;
legth=40;
width=10;
height=10;
difference(){
union(){
cube([legth,width,height]);//horizontal cube
translate([35,width/2,0])cube([legth-30,width,height/2],center=true);
cube([legth-30,width,height*12]);//vertical cube
translate([5,15,117.5])cube([legth-30,height,height/2],center=true);
}
translate([35,width/2,-30])cylinder(r=1.5*1.1,h=height*10,center=true);
//translate([35,width/2,8.5])cylinder(r=2.5*1.1,h=1.5,center=true);
rotate([90,0,0])translate([27,1.5,0])cylinder(r=3,h=height*10,center=true);
rotate([90,0,0])translate([27,8.5,0])cylinder(r=3,h=height*10,center=true);
rotate([90,0,0])translate([13,1.5,0])cylinder(r=3,h=height*10,center=true);
rotate([90,0,0])translate([13,8.5,0])cylinder(r=3,h=height*10,center=true);
translate([5,width+4,100])cylinder(r=1.5*1.1,h=height*10,center=true);
rotate([90,0,0])translate([1,112,0,])cylinder(r=3,h=height*10,center=true);
rotate([90,0,0])translate([9,112,0,])cylinder(r=3,h=height*10,center=true);
}


Loading