From ae25b44a90974deb86c88cb473809c0a2dad26bb Mon Sep 17 00:00:00 2001 From: davor Date: Tue, 26 Dec 2017 23:19:42 +0100 Subject: [PATCH] box: 3D printable OLED stand --- box/oled-stand.scad | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 box/oled-stand.scad diff --git a/box/oled-stand.scad b/box/oled-stand.scad new file mode 100644 index 0000000..a998a86 --- /dev/null +++ b/box/oled-stand.scad @@ -0,0 +1,27 @@ + +body=[28,5,11.0]; +hole_d=2.2; +hole_h=2.0; +hole_dist=23.75; + +difference() +{ + union() + { + cube(body,center=true); + // screw pins + for(i=[-1:2:1]) + translate([hole_dist/2*i,0,body[2]/2+hole_h/2]) + cylinder(d=hole_d,h=hole_h+0.1,$fn=6,center=true); + } + // cut clearing for ribbon cable + translate([0,0,body[2]/2]) + cube([hole_dist-5,10,2],center=true); + // cut bottom stand + // hdmi + translate([-body[0]/2,0,-body[2]/2]) + cube([34,10,13],center=true); + // audio jack + translate([body[0]/2,0,-body[2]/2]) + cube([4,10,10],center=true); +}