2021-08-28 15:45:11 +00:00
|
|
|
use <Motorhalter.scad>;
|
2021-09-09 19:19:54 +00:00
|
|
|
use <helpers/Holes.scad>;
|
2021-09-06 21:47:58 +00:00
|
|
|
|
2021-08-28 15:45:11 +00:00
|
|
|
$fn = 50;
|
|
|
|
|
|
|
|
height = 42.1;
|
|
|
|
thickness = 4;
|
|
|
|
|
|
|
|
difference() {
|
|
|
|
cube([70, height, thickness]);
|
|
|
|
rotate([0, -90, -90]) #motorholes(thickness+1);
|
|
|
|
|
|
|
|
l = 47;
|
|
|
|
r = 64;
|
2021-09-06 21:47:58 +00:00
|
|
|
translate([l, 6]) rotate([0, -90, -90]) #M4Hole(thickness+1);
|
|
|
|
translate([l, height-5]) rotate([0, -90, -90]) #M4Hole(thickness+1);
|
2021-08-28 15:45:11 +00:00
|
|
|
|
2021-09-06 21:47:58 +00:00
|
|
|
translate([r, 6]) rotate([0, -90, -90]) #M4Hole(thickness+1);
|
|
|
|
translate([r, height-5]) rotate([0, -90, -90]) #M4Hole(thickness+1);
|
2021-08-28 15:45:11 +00:00
|
|
|
|
2021-09-06 21:47:58 +00:00
|
|
|
translate([l+(r-l)/2, height/2]) rotate([0, -90, -90]) #M4Hole(thickness+1);
|
2021-08-28 15:45:11 +00:00
|
|
|
}
|