Files

controllers.scad
function in(in) = in*25.4; $fa=1; $fs=.5; fudge=0; tolerance=.5; foot_thick=.2; foot_radius=5; include <controller_sockets.scad>; include <teensy.scad>; include <pins.scad>; csy=ps*5.5/2; csx=ps*14/2; //Center to handle //N64 and NES-first ctoh_N64=in(1.2); ctoh_NES=in(1.1); ctoh_bot=in(0.2625)+ps; ctoh_top=in(0.3125)+ps; board_clearance=0.5; board_length=in(3.65); board_width=in(1.325); board_thick=in(.063); board_offset=5; ledge_width=2.5; socket_thick=1.5; box_thick=2.5; box_height= box_thick+ board_offset+ board_thick+ pin_base_height+ pin_gap+ socket_thick+ socket_depth; //helper board_top = box_thick + board_offset + board_thick; top_to_teensy=in(0.05); bottom_to_teensy=in(0.075); teensy_margin=1; teensy_hole_height = max( teensy_total_height, box_height - board_top - box_thick ); bottom_height=box_height-socket_depth-socket_thick; box_length=board_length+box_thick*2+board_clearance*2; box_width=board_width+box_thick*2+board_clearance*2; teensy_trans=(bottom_to_teensy-top_to_teensy)/2; connector_bottom=board_top + teensy_height + board_thick; //Size of outer cutout box cutout_size=[ teensy_width+teensy_margin*2, bottom_to_teensy+box_thick+board_clearance/2, teensy_hole_height - (bottom_height - board_top), ]; //Thickness of wall between teensy and connector cutout_thick = 1; //Moves from lying on the +X/+Y/+Z corner) cutout_pos=[-cutout_size[0]/2,-box_width/2,bottom_height]; holder_offset=board_top+ledge_width/2; holder_height=box_height-(socket_depth+socket_thick+holder_offset); holder_clearance=0.5; module lump(solid=true) { translate([-ps*3,0,0]) { translate([0,0,0]) NES(solid); translate([0,0,0]) SNES(solid); translate([ps*4+SNES_gap,0,0]) N64(solid); } } module lump_top() { translate([-ps*3,0,0]) { %translate([ps*1.5,ps*(.5),0]) NES_top(); translate([tpw/2,0,0]) SNES_top(); translate([ps*4+SNES_gap,0,0]) N64_top(); } } module timesfour() { translate([-ctoh_N64,-ctoh_bot,0]) child(0); translate([ctoh_NES,-ctoh_bot,0]) child(0); translate([-ctoh_NES,ctoh_top,0]) rotate([0,0,180]) child(0); translate([ctoh_N64,ctoh_top,0]) rotate([0,0,180]) child(0); } module connector_cap() { translate([0,-fudge,0]) translate([ (cutout_size[0]-connector_size[0])/2, cutout_size[1] - cutout_thick, connector_bottom + connector_size[2] - bottom_height, ]) cube(size=[ connector_size[0], cutout_thick, box_height-connector_bottom-connector_size[2] ] + [0,fudge*2,fudge]); } module grab_top() { grab_r = ledge_width/2; translate([ 0, ledge_width, box_thick-grab_r+ board_offset-ledge_width ]) rotate([90,0,0]) cylinder(h=ledge_width, r=grab_r); } module grab_bottom() { translate([0,0,box_thick+board_offset-ledge_width]) cube(ledge_width); } module box_top() { //Box top color("slateblue",0.5) { difference() { union() { //Main frame of the box translate([-box_length/2,-box_width/2,0]) difference() { translate([0,0,box_thick]) cube(size=[ box_length, box_width, box_height-box_thick ]); translate([box_thick,0,0]) cube(size=[ box_length-box_thick*2, box_width, bottom_height ]); translate([ box_length/2, box_width/2 - box_thick/2, board_top+teensy_hole_height/2]) cube(size=[ teensy_width+teensy_margin*2, box_width-box_thick, teensy_hole_height ],center=true); } } translate([0,0,box_height-socket_depth]) linear_extrude(height=socket_depth+fudge) timesfour() lump(); translate([0,0,bottom_height] + [0,0,-fudge]) linear_extrude(height=box_thick+fudge*2) timesfour() pin_cutout(); } //Connector cap thingy translate(cutout_pos) connector_cap(); //Feet difference() { bothends() bothsides() translate([0,0,box_height-foot_thick]) cylinder(r=foot_radius,h=foot_thick); translate([0,0,box_height-socket_depth]) linear_extrude(height=socket_depth+fudge) timesfour() lump(); } bothends() { bothsides() union() { grab_top(); } } } } module box_bottom() { color("darkblue") { //Base outline translate([-box_length/2,-box_width/2,0]) difference() { translate([0,0,0]) cube(size=[box_length,box_width,bottom_height]); translate([0,box_thick,box_thick]) cube(size=[box_length,box_width-box_thick*2,box_height]); translate([-fudge,-fudge,0]) translate([0,0,box_thick]) cube([box_thick,box_width,box_height] + [fudge,fudge*2,0]); translate([0,-fudge,0]) translate([box_length-box_thick,0,box_thick]) cube([box_thick,box_width,box_height] + [fudge,fudge*2,0]); } //Teensy holder translate(cutout_pos) difference() { union() { cube(cutout_size); translate([0,box_thick,0]) rotate([0,90,0]) linear_extrude(height=cutout_size[0]) polygon(points=[[0,0],[cutout_size[1]-box_thick,0],[0,cutout_size[1]-box_thick]]); } translate([box_thick,0,box_thick] + [0,-fudge,fudge]) cube(size=cutout_size-([box_thick*2,cutout_thick,box_thick] + [0,-fudge,0])); translate([ (cutout_size[0]-connector_size[0])/2, bottom_to_teensy+box_thick-cutout_thick, connector_bottom-cutout_pos[2] ]) cube(size=connector_size + [0,0,box_height] + [0,0,fudge]); //Just cut out everything to the top, the cap will take care of it } //Board holders translate([0,0,box_thick+board_offset]) bothsides() union() { rotate([0,90,0]) linear_extrude(height=box_length-box_thick*2,center=true) { polygon(points=[[0,0],[ledge_width,0],[0,ledge_width]]); translate([-(ledge_width/2+board_thick),0,0]) polygon(points=[[0,0],[ledge_width/2,0],[0,ledge_width/2]]); } } //Top holder bothends() { bothsides() union() { grab_bottom(); } } //Feet bothends() bothsides() translate([-wall_thick,-wall_thick,0]) cylinder(r=foot_radius,h=foot_thick); } } module bothsides() { translate([0,-(box_width/2-box_thick),0]) child(0); translate([0,box_width/2-box_thick,0]) mirror([0,1,0]) child(0); } module bothends() { translate([-(box_length/2-box_thick),0,0]) child(0); translate([box_length/2-box_thick,0,0]) mirror([1,0,0]) child(0); } module box() { //translate([0,0,50]) union() { box_top(); } union() { box_bottom(); } } module board() { union() { //Board color("darkgreen") translate([0,0,board_top - board_thick/2]) cube(size=[ board_length, board_width, board_thick ], center=true); //Pins translate([0,0,board_top]) timesfour() pin_set(); //Teensy translate([ -teensy_width/2, teensy_trans-teensy_length/2, board_top ]) teensy_headers(); } } //Socket mockups *color("dimgray") translate([0,0,box_height]) linear_extrude(height=socket_depth) timesfour() lump_top(); board(); !box_top(); %translate([ -teensy_width/2, teensy_trans-teensy_length/2, board_top ]) teensy(); *intersection() { union() { box(); } //translate([box_length*$t-box_length/2,0,box_height/2]) translate([0,0,box_height*$t]) //cube([box_length/$ns,box_width,box_height],center=true); cube([box_length,box_width,box_height/$ns],center=true); } *difference() { box(); translate([-box_length/2,0,0]) cube([box_length,box_width,box_height]); } *translate([0,10,box_height-(5.8+1.5)]) cylinder(r=6,h=5.8+1.5);
Report a bug