From d07138f86f342e77c96d567c3120c1abc8afc017 Mon Sep 17 00:00:00 2001 From: jaseg Date: Tue, 17 Jul 2018 15:56:47 +0200 Subject: Add/reorg enclosure OpenSCAD files --- enclosure/rails/raspi_adapter.scad | 68 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 enclosure/rails/raspi_adapter.scad (limited to 'enclosure/rails/raspi_adapter.scad') diff --git a/enclosure/rails/raspi_adapter.scad b/enclosure/rails/raspi_adapter.scad new file mode 100644 index 0000000..12d17a7 --- /dev/null +++ b/enclosure/rails/raspi_adapter.scad @@ -0,0 +1,68 @@ +eps=0.01; + +nut_dia = 5.3; +nut_depth=5.5; + +module nut_base(w=10, o) { + difference() { + cylinder(d=w, h=nut_depth+o); + translate([0, 0, o-eps]) cylinder(d=nut_dia, h=nut_depth+2*eps); + } +} + +module raspi_holder(w, h, x=4) { + difference() { + union() { + cube([58+w, 49+w, h]); + + translate([w/2, w/2, 0]) union() { + nut_base(o=h); + translate([58, 0, 0]) { + nut_base(o=h); + translate([0, 49, 0]) nut_base(o=h); + } + translate([0, 49, 0]) nut_base(o=h); + } + } + translate([w, w, -eps]) cube([58-w, 49-w, h+2*eps]); + + + translate([w/2, w/2, -eps]) { + cylinder(d=x, h=h+2*eps); + translate([58, 0, 0]) { + cylinder(d=x, h=h+2*eps); + translate([0, 49, 0]) cylinder(d=x, h=h+2*eps); + } + translate([0, 49, 0]) cylinder(d=x, h=h+2*eps); + } + } +} + +module rev_nut_base(w=10, h=5, a=45, x=4, th=7, tw=10) { + rotate([0, 0, a]) + translate([-w/2, -w, 0]) difference() { + union() { + cube([w, w, h]); + translate([w/2, w, 0]) cylinder(d=tw, h=th); + } + translate([w/2, w, -eps]) { + cylinder(d=nut_dia, h=nut_depth+2*eps); + cylinder(d=x, h=th+2*eps); + } + } +} + +module raspi_adapter(w=10, h=5, s=30) { + translate([-(58+w)/2, -(49+w)/2, 0]) raspi_holder(w=w, h=h); + difference() { + union() { + translate([-s, -(49+w)/2-5, 0]) rev_nut_base(a=-15-180); + translate([ s, -(49+w)/2-5, 0]) rev_nut_base(a=-75-90); + translate([-s, (49+w)/2+5, 0]) rev_nut_base(a=-75+90); + translate([ s, (49+w)/2+5, 0]) rev_nut_base(a=-15); + } + cube([64, 55, 100], center=true); + } +} + +raspi_adapter($fn=25); -- cgit