From 665d8c9fbe186284180f266a768b2f552c23bfca Mon Sep 17 00:00:00 2001 From: "Jan \"Yenya\" Kasprzak" Date: Thu, 23 Apr 2015 18:29:28 +0200 Subject: [PATCH] holder for Papouch Quido --- din-quido.scad | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 din-quido.scad diff --git a/din-quido.scad b/din-quido.scad new file mode 100644 index 0000000..bf914d8 --- /dev/null +++ b/din-quido.scad @@ -0,0 +1,66 @@ +infty = 300; +eps = 0.1; + +wall = 3; + +papouch_h = 123.2 + 0.5; +w = 20; + +module din(height) { + assign( + din_h = 35, + din_thick = 2, + din_clip = 4, + din_bottom_d = 10, + din_bottom_thick = 1.0, + din_bottom_hole = 0.7 + ) { + // front part + translate([-din_h/2 -wall, 0, 0]) + cube([din_h + 2*wall, wall, height]); + // top plate + translate([din_h/2, 0, 0]) + cube([wall, 2*wall + din_thick, height]); + // behind the top plate + translate([din_h/2 - din_clip, wall + din_thick, 0]) + cube([din_clip + wall, wall, height]); + + // bottom spring + translate([-din_h/2 - din_bottom_d/2, din_bottom_d/2+wall-din_bottom_thick, 0]) + difference() { + cylinder(r = din_bottom_d/2, h = height, $fn = 32); + translate([0, 0, -eps]) + cylinder(r = din_bottom_d/2 - din_bottom_thick, + h = height+2*eps, $fn = 16); + translate([0, -din_bottom_d/2 + din_bottom_thick, -eps]) + cube([din_bottom_d, din_bottom_hole, height + 2*eps]); + }; + }; +}; + +module pcb_end(comp_h, pcb_h, pcb_border, height) { + translate([-wall, 0, 0]) + cube([wall+pcb_border, wall, height]); + translate([-wall, wall-eps, 0]) + cube([wall, pcb_h+eps, height]); + intersection() { + translate([-wall, 0, 0]) + cube([2*wall, wall+pcb_h+5, height]); + translate([-3, wall+pcb_h + 5/2, 0]) + cylinder(r=4, h=height); + } +} +module papouch(len, height, clip) { + // back + translate([-len/2-wall, -wall, 0]) + cube([len+2*wall, wall+eps, height]); + for (x = [-1, 1]) scale([x, 1, 1]) + translate([-len/2, 0, 0]) + pcb_end(3, 1.6, 5, height); +}; + + +rotate([0, 0, 180]) din(w); +papouch(papouch_h, w, 5.5); + + -- 2.43.0