/* SBC Case Builder Copyright 2022, 2023, 2024 Edward A. Kisiel hominoid@cablemi.com This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Code released under GPLv3: http://www.gnu.org/licenses/gpl.html 20220202 Version 1.0.0 sbc case builder using sbc model framework. see https://github.com/hominoids/SBC_Case_Builder */ use <./SBC_Model_Framework/sbc_models.scad>; include <./sbc_case_builder_library.scad>; include <./SBC_Model_Framework/sbc_models.cfg>; include <./sbc_case_builder_accessories.cfg>; /* [View] */ // viewing mode "model", "platter", "part" view = "model"; // [model, platter, part] individual_part = "bottom"; // [top, bottom, right, left, front, rear, accessories] // single board computer model sbc_model = "c1+"; // ["c1+", "c2", "c4", "hc4", "xu4", "xu4q", "mc1", "hc1", "n1", "n2", "n2+", "n2l", "n2lq", "m1", "m1s", "h2", "h2+", "h3", "h3+", "show2", "rpipico", "rpipicow", "rpicm4+ioboard", "rpicm1", "rpicm3", "rpicm3l", "rpicm3+", "rpicm4s", "rpicm4", "rpicm4l", "rpizero", "rpizerow", "rpizero2w", "rpi1a+", "rpi1b+", "rpi2b", "rpi3a+", "rpi3b", "rpi3b+", "rpi4b", "rpi5", "rock64", "rockpro64", "quartz64a", "quartz64b", "h64b", "star64", "rock4a", "rock4b", "rock4a+", "rock4b+", "rock4c", "rock4c+", "rock5b-v1.3", "rock5b", "rock5bq", "vim1", "vim2", "vim3", "vim3l", "vim4", "tinkerboard", "tinkerboard-s", "tinkerboard-2", "tinkerboard-2s", "tinkerboard-r2", "tinkerboard-r2s", "opizero", "opizero2", "opir1plus_lts", "opir1", "opi5", "jetsonnano", "lepotato", "sweetpotato", "tritium-h2+", "tritium-h3", "tritium-h5", "solitude", "alta", "atomicpi", "visionfive2", "visionfive2q", "licheerv+dock", "rak19007"] // sbc off in model view sbc_off = false; // sbc information display sbc_information = false; // enable highlight for sbc component subtractive geometry sbc_highlight = false; // enable highlight for accessory subtractive geometry accessory_highlight = false; // base case design case_design = "shell"; // [shell,panel,stacked,tray,round,hex,snap,fitted,paper] // base case style case_style = "none"; // ["none","vu5","vu7","sides","split-top","full-top"] // raises top mm in model view or < 0 = off raise_top = 0; // [-1:100] // lowers bottom mm in model view or < 0 = off lower_bottom = 0; // [-1:100] // move left side mm in model view or < 0 = off move_leftside = 0; // [-1:100] // move right side mm in model view or < 0 = off move_rightside = 0; // [-1:100] // move front mm in model view or < 0 = off move_front = 0; // [-1:100] // move rear mm in model view or < 0 = off move_rear = 0; // [-1:100] /* [3D Case Adjustments] */ // sbc location x axis pcb_loc_x = 0; //[0:.01:300] // sbc location y axis pcb_loc_y = 0; //[0:.01:300] // sbc location z axis pcb_loc_z = 0; //[0:.01:100] // additional x axis case size case_offset_x = 0; //[0:.01:300] // additional y axis case size case_offset_y = 0; //[0:.01:300] // additional z axis case top size case_offset_tz = 0; //[0:.01:100] // additional z axis case bottom size case_offset_bz = 0; //[0:.01:100] // case wall thickness wallthick = 2; //[1:.01:5] // case floor thickness floorthick = 2; //[1:.01:5] // side wall thickness for tray_side cases only sidethick = 2; //[1:.01:5] // distance between pcb and case gap = 1; //[.5:.01:5] // corner fillets corner_fillet = 3; //[0:.5:9] // edge fillets edge_fillet = 0; //[0:.5:6] // tolerance for fitted surfaces tol = .25; //[-.5:.0625:.5] /* [Top Standoffs] */ // enable case top standoffs sbc_top_standoffs = true; top_standoff_reverse = true; // enable wall support for standoffs top_sidewall_support = true; top_standoff_type = "blind"; //[none, countersunk, recessed, nut holder, blind] top_standoff_pillar = "hex"; //[hex, round] top_standoff_diameter = 5.75; //[0:.01:10] top_standoff_hole_size = 2.75; //[0:.01:5] top_standoff_support_size = 10; //[0:.01:15] top_standoff_support_height = 4; //[0:.01:50] top_standoff_insert = false; top_standoff_insert_dia = 4.2; //.01 top_standoff_insert_height = 5.1; //.01 // case top - lower left standoff settings top_rear_left_enable = true; top_rear_left_adjust = 0; //[-20:.01:20] top_rear_left_support = "rear"; //[none,left,rear,front,right] // case top - upper left standoff settings top_front_left_enable = true; top_front_left_adjust = 0; //[-20:.01:20] top_front_left_support = "front"; //[none,left,rear,front,right] // case top - lower right standoff settings top_rear_right_enable = true; top_rear_right_adjust = 0; //[-20:.01:20] top_rear_right_support = "rear"; //[none,left,rear,front,right] // case top - upper right standoff settings top_front_right_enable = true; top_front_right_adjust = 0; //[-20:.01:20] top_front_right_support = "front"; //[none,left,rear,front,right] /* [Bottom Standoffs] */ // enable case bottom standoffs sbc_bottom_standoffs = true; bottom_standoff_reverse = false; // enable wall support for standoffs bottom_sidewall_support = true; bottom_standoff_type = "countersunk"; //[none, countersunk, recessed, nut holder, blind] bottom_standoff_pillar = "hex"; //[hex, round] bottom_standoff_diameter = 5.75; //[2:.01:10] bottom_standoff_hole_size = 3.4; //[0:.01:5] bottom_standoff_support_size = 10; //[1:.01:15] bottom_standoff_support_height = 4; //[0:.01:50] bottom_standoff_insert = false; bottom_standoff_insert_dia = 4.2; //.01 bottom_standoff_insert_height = 5.1; //.01 // case bottom - rear left standoff settings bottom_rear_left_enable = true; bottom_rear_left_adjust = 0; //[-20:.01:20] bottom_rear_left_support = "rear"; //[none,left,rear,front,right] // case bottom - upper left standoff settings bottom_front_left_enable = true; bottom_front_left_adjust = 0; //[-20:.01:20] bottom_front_left_support = "front"; //[none,left,rear,front,right] // case bottom - lower right standoff settings bottom_rear_right_enable = true; bottom_rear_right_adjust = 0; //[-20:.01:20] bottom_rear_right_support = "rear"; //[none,left,rear,front,right] // case bottom - upper right standoff settings bottom_front_right_enable = true; bottom_front_right_adjust = 0; //[-20:.01:20] bottom_front_right_support = "front"; //[none,left,rear,front,right] /* [Extended Top Standoffs] */ // enable case extended standoffs ext_top_standoffs = true; ext_top_standoff_reverse = true; // enable wall support for extended standoffs ext_top_sidewall_support = true; ext_top_standoff_type = "blind"; //[none, countersunk, recessed, nut holder, blind] ext_top_standoff_pillar = "hex"; //[hex, round] ext_top_standoff_diameter = 5.75; //[0:.01:10] ext_top_standoff_hole_size = 2.75; //[0:.01:5] ext_top_standoff_support_size = 10; //[0:.01:15] ext_top_standoff_support_height = 4; //[0:.01:50] ext_top_standoff_insert = false; ext_top_standoff_insert_dia = 4.2; //.01 ext_top_standoff_insert_height = 5.1; //.01 // extended case top - lower left standoff settings ext_top_rear_left_enable = true; ext_top_rear_left_adjust = 0; //[-20:.01:20] ext_top_rear_left_support = "rear"; //[none,left,rear,front,right] // extended case top - upper left standoff settings ext_top_front_left_enable = true; ext_top_front_left_adjust = 0; //[-20:.01:20] ext_top_front_left_support = "front"; //[none,left,rear,front,right] // extended case top - lower right standoff settings ext_top_rear_right_enable = true; ext_top_rear_right_adjust = 0; //[-20:.01:20] ext_top_rear_right_support = "rear"; //[none,left,rear,front,right] // extended case top - upper right standoff settings ext_top_front_right_enable = true; ext_top_front_right_adjust = 0; //[-20:.01:20] ext_top_front_right_support = "front"; //[none,left,rear,front,right] /* [Extended Bottom Standoffs] */ // enable case bottom extended standoffs ext_bottom_standoffs = true; ext_bottom_standoff_reverse = false; // enable wall support for extended standoffs ext_bottom_sidewall_support = true; ext_bottom_standoff_type = "countersunk"; //[none, countersunk, recessed, nut holder, blind] ext_bottom_standoff_pillar = "hex"; //[hex, round] ext_bottom_standoff_diameter = 5.75; //[2:.01:10] ext_bottom_standoff_hole_size = 3.4; //[0:.01:5] ext_bottom_standoff_support_size = 10; //[1:.01:15] ext_bottom_standoff_support_height = 4; //[0:.01:50] ext_bottom_standoff_insert = false; ext_bottom_standoff_insert_dia = 4.2; //.01 ext_bottom_standoff_insert_height = 5.1; //.01 // extended case bottom - rear left standoff settings ext_bottom_rear_left_enable = true; ext_bottom_rear_left_adjust = 0; //[-20:.01:20] ext_bottom_rear_left_support = "rear"; //[none,left,rear,front,right] // extended case bottom - upper left standoff settings ext_bottom_front_left_enable = true; ext_bottom_front_left_adjust = 0; //[-20:.01:20] ext_bottom_front_left_support = "front"; //[none,left,rear,front,right] // extended case bottom - lower right standoff settings ext_bottom_rear_right_enable = true; ext_bottom_rear_right_adjust = 0; //[-20:.01:20] ext_bottom_rear_right_support = "rear"; //[none,left,rear,front,right] // extended case bottom - upper right standoff settings ext_bottom_front_right_enable = true; ext_bottom_front_right_adjust = 0; //[-20:.01:20] ext_bottom_front_right_support = "front"; //[none,left,rear,front,right] /* [Folded Case Adjustments] */ // material thickness in mm material_thickness = .5; //[.1:.01:3] // bend allowance bend_allowance = 1; //[0:.01:5] // bottom clearence bottom_clearence = 3.5; //[-10:.01:10] // enable flat blank section for export flat_blank_section = false; /* [Features and Accessories] */ // top cover pattern top_cover_pattern = "solid"; //[solid,hex_5mm,hex_8mm,deltoid,astroid,apollonian] // bottom cover pattern bottom_cover_pattern = "solid"; //[solid,hex_5mm,hex_8mm,deltoid,astroid,apollonian] bottom_access_port_enable = false; access_port_size = [30,70]; //[10:.01:120] access_port_orientation = "landscape"; //[landscape,portrait] access_port_location = [10,10]; //[0:.01:200] access_port_rotation = 0; //[0:90:270] // heatsink opening cooling = "default"; // [default,none,open,fan_open,fan_1,fan_2,fan_hex,vent,vent_hex_5mm,vent_hex_8mm,custom] fan_size = 0; // [0,30,40,50,60,70,80,92] // exhaust vent exhaust_vent = "none"; // [none,rear,front,right,left] // gpio opening gpio_opening = "default"; // [default,none,open,block,knockout,vent] // uart opening uart_opening = "default"; // [default,none,open,knockout] // enable indentations around io openings indents = true; // case accessory group to load accessory_name = "none"; // ["none", "hk_uart", "sensors", "c4_shell_boombox", "c4_panel_lcd3.5", "c4_desktop_lcd3.5", "c4_deskboom_lcd3.5", "c4_panel_boombox", "c4_tray_boombox", "c4_round", "c4_hex", "xu4_keyhole", "hc4_tray_drivebox2.5", "hc4_shell_drivebox2.5", "hc4_shell_drivebox2.5v", "hc4_shell_drivebox3.5", "n2l_tray", "n2l_gpio", "m1s_shell_nvme", "m1s_shell_ups", "m1s_tray_nvme", "m1s_snap", "m1s_fitted", "m1_panel", "m1_tray", "m1_tray_ssd", "m1_tray_sides", "m1_tray_vu5", "m1_tray_vu7", "m1_fitted_drivebox2.5", "m1_fitted_drivebox3.5", "m1_fitted_pizzabox", "m1_fitted_drivebox3.5v", "h3_shell", "h3_lowboy", "h3_lowboy_router", "h3_tallboy", "h3_tallboy-ssd", "h3_ultimate", "h3_ultimate2", "h3_shell_drivebox2.5v", "show2_shell", "jetsonnano_shell", "jetsonnano_panel", "jetsonnano_stacked", "jetsonnano_tray", "jetsonnano_tray_sides", "jetsonnano_round", "jetsonnano_hex", "jetsonnano_snap", "jetsonnano_fitted", "rock5b", "rock5b_shell", "rock5bq", "rock5bq_shell", "rock5bq_tray", "rock5bq_tray_sides", "rock5bq_snap", "rock5bq_fitted", "rock5b-v1.3", "visonfive2_shell", "visonfive2_panel", "visonfive2_stacked", "visonfive2_tray", "visonfive2_snap", "visonfive2_fitted", "visonfive2q_shell", "visonfive2q_panel", "visonfive2q_stacked", "visonfive2q_tray", "visonfive2q_snap", "visonfive2q_fitted"] text_color = "Green"; // [Green, Black, Dimgrey, White, Yellow, Orange, Red, DarkbBlue] text_font = "Nimbus Mono PS"; // [Nimbus Mono PS, Liberation Mono, Noto Sans Mono] a = search([accessory_name],accessory_data); s = search([sbc_model],sbc_data); pcb_id = sbc_data[s[0]][4]; pcb_width = sbc_data[s[0]][10][0]; pcb_depth = sbc_data[s[0]][10][1]; pcb_z = sbc_data[s[0]][10][2]; pcb_tmaxz = sbc_data[s[0]][11][5]; pcb_bmaxz = sbc_data[s[0]][11][6]; pcb_color = sbc_data[s[0]][11][1]; pcb_radius = sbc_data[s[0]][11][0]; width = pcb_width+2*(wallthick+gap)+case_offset_x; depth = pcb_depth+2*(wallthick+gap)+case_offset_y; top_height = pcb_tmaxz+floorthick+case_offset_tz; bottom_height = case_design == "tray" ? pcb_z+pcb_bmaxz+floorthick+case_offset_bz+4 : pcb_z+pcb_bmaxz+floorthick+case_offset_bz; case_z = bottom_height+top_height; case_diameter = sqrt(pow(width-wallthick-gap,2)+pow(depth-wallthick-gap,2)); hex_diameter = sqrt(pow(width+2*(wallthick+gap),2)+pow(depth+2*(wallthick+gap),2)); /* [Hidden] */ top_standoff = [top_standoff_diameter, 18, top_standoff_hole_size, top_standoff_support_size, top_standoff_support_height, top_standoff_type, top_standoff_pillar, top_rear_left_support, top_standoff_reverse, top_standoff_insert, top_standoff_insert_dia, top_standoff_insert_height]; bottom_standoff = [bottom_standoff_diameter, 6, bottom_standoff_hole_size, bottom_standoff_support_size, bottom_standoff_support_height, bottom_standoff_type, bottom_standoff_pillar, bottom_rear_left_support, bottom_standoff_reverse, bottom_standoff_insert, bottom_standoff_insert_dia, bottom_standoff_insert_height]; ext_top_standoff = [top_standoff_diameter, 18, top_standoff_hole_size, top_standoff_support_size, top_standoff_support_height, top_standoff_type, top_standoff_pillar, top_rear_left_support, top_standoff_reverse, top_standoff_insert, top_standoff_insert_dia, top_standoff_insert_height]; ext_bottom_standoff = [bottom_standoff_diameter, 6, bottom_standoff_hole_size, bottom_standoff_support_size, bottom_standoff_support_height, bottom_standoff_type, bottom_standoff_pillar, bottom_rear_left_support, bottom_standoff_reverse, bottom_standoff_insert, bottom_standoff_insert_dia, bottom_standoff_insert_height]; adj = .01; $fn=90; // platter view if (view == "platter") { if(case_design == "shell") { case_bottom(case_design); translate([0,(2*depth)+20,case_z]) rotate([180,0,0]) case_top(case_design); } if(case_design == "panel") { case_bottom(case_design); translate([0,(2*depth)+5,case_z]) rotate([180,0,0]) case_top(case_design); translate([width+25,0,-gap]) rotate([-90,0,0]) case_side(case_design,case_style,"rear"); translate([width+25,2*(case_z)+10,-depth+wallthick+gap+floorthick]) rotate([90,0,0]) case_side(case_design,case_style,"front"); translate([2.5*width,0,-width+(2*wallthick)+gap]) rotate([0,-90,-90]) case_side(case_design,case_style,"right"); translate([-20,0,-gap]) rotate([0,90,90]) case_side(case_design,case_style,"left"); } if(case_design == "stacked") { case_bottom(case_design); translate([0,(2*depth)+20,case_z]) rotate([180,0,0]) case_top(case_design); } if(case_design == "tray") { case_bottom(case_design); translate([0,(2*depth)+10,case_z]) rotate([180,0,0]) case_top(case_design); if(case_style == "vu5" || case_style == "vu7" || case_style == "sides") { translate([3*width,0,width]) rotate([0,90,90]) case_side(case_design,case_style,"right"); translate([width+15,0,2*sidethick]) rotate([0,-90,-90]) case_side(case_design,case_style,"left"); } } if(case_design == "round") { case_bottom(case_design); translate([width+30,depth,case_z-floorthick-gap]) rotate([180,0,0]) case_top(case_design); } if(case_design == "hex") { case_bottom(case_design); translate([2*width,depth,case_z]) rotate([180,0,0]) case_top(case_design); } if(case_design == "snap") { case_bottom(case_design); translate([0,(2*depth)+20,case_z+2*floorthick]) rotate([180,0,0]) case_top(case_design); } if(case_design == "fitted") { case_bottom(case_design); translate([0,(2*depth)+20,case_z+floorthick]) rotate([180,0,0]) case_top(case_design); } // platter accessories if(accessory_name != "none") { for (i=[1:11:len(accessory_data[a[0]])-1]) { class = accessory_data[a[0]][i]; type = accessory_data[a[0]][i+1]; loc_x = accessory_data[a[0]][i+2]; loc_y = accessory_data[a[0]][i+3]; loc_z = accessory_data[a[0]][i+4]; face = accessory_data[a[0]][i+5]; rotation = accessory_data[a[0]][i+6]; parametric = accessory_data[a[0]][i+7]; size_x = accessory_data[a[0]][i+8][0]; size_y = accessory_data[a[0]][i+8][1]; size_z = accessory_data[a[0]][i+8][2]; data_1 = accessory_data[a[0]][i+9][0]; data_2 = accessory_data[a[0]][i+9][1]; data_3 = accessory_data[a[0]][i+9][2]; data_4 = accessory_data[a[0]][i+9][3]; mask = accessory_data[a[0]][i+10]; if (class == "platter" && type != "button_top") { add(type, loc_x, loc_y, loc_z, face, rotation, [size_x, size_y, size_z], [data_1, data_2, data_3, data_4], mask); } if (class == "platter" && type == "button_top") { translate([loc_x,loc_y,loc_z+1.25]) rotate([-90,0,0]) button_plunger(data_3, size_x, size_z); translate([loc_x-20,loc_y-10,loc_z+3]) rotate([0,0,0]) button_top(data_3, size_x, size_z); translate([loc_x-20,loc_y-20,loc_z]) rotate([0,0,0]) button_clip(data_3); } if (class == "platter" && type == "h3_port_extender_holder") { translate([loc_x,loc_y,loc_z]) rotate([0,0,0]) h3_port_extender_holder("bottom"); translate([loc_x-20,loc_y+40,loc_z+36.5]) rotate([180,0,0]) h3_port_extender_holder("top"); } } } if(case_design == "paper") { case_folded(case_design, case_style); } if(case_design == "tray") { echo(Case_Width=width+2*sidethick,Depth=depth,Top=top_height,Bottom=bottom_height); } else { echo(Case_Width=width,Depth=depth,Top=top_height,Bottom=bottom_height); } } // model view if (view == "model") { // translate([(-width+(gap+wallthick))/2,(-depth+(gap+wallthick))/2,0]) rotate([0,0,0]){ text_offset = 25; text_height = case_z + (len(sbc_data[s[0]][1]) * 7); text_indent = [0,-32.5,4,0,-20.5,-8,4,4,4,4,-12,-16,-4,-12.5,-8,-4,-12,0,4,0,4,8,-.5,-12.5,-4.5,-8.5,0,-8]; ctext_offset = 15; ctext_height = 130; if(case_design == "shell") { if(lower_bottom >= 0) { difference() { color("dimgrey",1) translate([0,0,-lower_bottom]) case_bottom(case_design); if(move_rear < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,-lower_bottom]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_front < 0) { translate([-gap-wallthick-1,depth-2*(gap+wallthick),-lower_bottom]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_leftside < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,-lower_bottom]) cube([gap+wallthick+1.01,depth+2,case_z+2]); } if(move_rightside < 0) { translate([width-gap-(2*wallthick)-adj,-gap-wallthick-1,-lower_bottom]) cube([gap+wallthick,depth+2,case_z+2]); } } } if(sbc_off == false) { translate([pcb_loc_x ,pcb_loc_y,bottom_height-pcb_z+pcb_loc_z]) sbc(sbc_model, cooling, fan_size, gpio_opening, uart_opening, false); } if(raise_top >= 0) { difference() { color("grey",1) translate([0,0,raise_top]) case_top(case_design); if(move_rear < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,raise_top]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_front < 0) { translate([-gap-wallthick-1,depth-2*(gap+wallthick),raise_top]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_leftside < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,raise_top]) cube([gap+wallthick+1.01,depth+2,case_z+2]); } if(move_rightside < 0) { translate([width-gap-(2*wallthick)-adj,-gap-wallthick-1,raise_top]) cube([gap+wallthick,depth+2,case_z+2]); } } } } if(case_design == "panel") { if(lower_bottom >= 0) { color("grey",1) translate([0,0,-lower_bottom]) case_bottom(case_design); } if(sbc_off == false) { translate([pcb_loc_x ,pcb_loc_y,bottom_height-pcb_z+pcb_loc_z]) sbc(sbc_model, cooling, fan_size, gpio_opening, uart_opening, false); } if(raise_top >= 0) { color("grey",1) translate([0,0,raise_top])case_top(case_design); } if(move_front >= 0) { color("grey",1) translate([0,move_front,0]) case_side(case_design,case_style,"front"); } if(move_rear >= 0) { color("grey",1) translate([0,-move_rear,0]) case_side(case_design,case_style,"rear"); } if(move_rightside >= 0) { color("grey",1) translate([move_rightside,0,0]) case_side(case_design,case_style,"right"); } if(move_leftside >= 0) { color("grey",1) translate([-move_leftside,0,0]) case_side(case_design,case_style,"left"); } } if(case_design == "stacked") { if(lower_bottom >= 0) { color("grey",1) translate([0,0,-lower_bottom]) case_bottom(case_design); } if(sbc_off == false) { translate([pcb_loc_x ,pcb_loc_y,bottom_height-pcb_z+pcb_loc_z]) sbc(sbc_model, cooling, fan_size, gpio_opening, uart_opening, false); } if(raise_top >= 0) { color("grey",1) translate([0,0,raise_top]) case_top(case_design); } } if(case_design == "tray") { if(lower_bottom >= 0) { difference() { color("dimgrey",1) translate([0,0,-lower_bottom]) case_bottom(case_design); if(move_rear < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,-lower_bottom]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_front < 0) { translate([-gap-wallthick-1,depth-gap-wallthick-2.01,-lower_bottom]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_leftside < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,-lower_bottom]) cube([gap+wallthick+1.01,depth+2,case_z+2]); } if(move_rightside < 0) { translate([width-gap-wallthick-2.01,-gap-wallthick-1,-lower_bottom]) cube([gap+wallthick+1,depth+2,case_z+2]); } } } if(sbc_off == false) { translate([pcb_loc_x,pcb_loc_y,bottom_height-pcb_z+pcb_loc_z]) sbc(sbc_model, cooling, fan_size, gpio_opening, uart_opening, false); } if(raise_top >= 0) { difference() { color("grey",1) translate([0,0,raise_top]) case_top(case_design); if(move_rear < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,raise_top]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_front < 0) { translate([-gap-wallthick-1,depth-gap-wallthick-2.01,raise_top]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_leftside < 0) { translate([-gap-2*wallthick-1,-gap-wallthick-1,raise_top]) cube([gap+wallthick+1.01,depth+2,case_z+2]); } if(move_rightside < 0) { translate([width-gap-wallthick-2.01,-gap-wallthick-1,raise_top]) cube([gap+2*wallthick+1,depth+2,case_z+2]); } } } if(case_style == "sides" || case_style == "vu5" || case_style == "vu7") { if(move_rightside >= 0) { color("grey",1) translate([move_rightside,0,0]) case_side(case_design,case_style,"right"); } if(move_leftside >= 0) { color("grey",1) translate([-move_leftside,0,0]) case_side(case_design,case_style,"left"); } } if(case_style == "vu5") { color("darkgrey",.5) translate([width+((127.5-width)/2)-6.5-wallthick-gap, depth-1,case_z+15.5]) rotate([-vu_rotation[0],0,180]) import(file = "stl/Vu5a_Case.stl"); // right speaker and bracket color("darkgrey",.5) translate([((127.5-75)/2)+(width/2)-wallthick-gap+30.5,depth-1, case_z+15]) rotate([90-vu_rotation[0],0,180]) import(file = "stl/Vu5_Speaker_Bracket_Left.stl"); color("darkgrey",.5) translate([((127.5-75)/2)+(width/2)-wallthick-gap+85,depth+15, case_z+12.5]) rotate([-vu_rotation[0],0,180]) hk_speaker(); // left speaker and bracket color("darkgrey",.5) translate([-((127.5-75)/2)+(width/2)-wallthick-gap-30.5,depth-1, case_z+15]) rotate([90-vu_rotation[0],0,180]) import(file = "stl/Vu5_Speaker_Bracket_Right.stl"); color("darkgrey",.5) translate([-((127.5-75)/2)+(width/2)-wallthick-gap-40.5,depth+15, case_z+12.5]) rotate([-vu_rotation[0],0,180]) hk_speaker(); } if(case_style == "vu7") { color("darkgrey",.5) translate([width+((192.90-width)/2)-wallthick-gap-20, depth-1,case_z+15.5]) rotate([-vu_rotation[0],0,180]) import(file = "stl/Vu7a_Case.stl"); // right speaker and bracket color("darkgrey",.5) translate([((192.90-100)/2)+(width/2)-wallthick-gap+57.5,depth-4, case_z+27]) rotate([90-vu_rotation[0],0,180]) import(file = "stl/Vu7_Speaker_Bracket_Left.stl"); color("darkgrey",.5) translate([((192.90-100)/2)+(width/2)-wallthick-gap+97,depth+11.5, case_z+27]) rotate([-vu_rotation[0],0,180]) hk_speaker(); // left speaker and bracket color("darkgrey",.5) translate([-((192.90-100)/2)+(width/2)-wallthick-gap-58,depth-4, case_z+27]) rotate([90-vu_rotation[0],0,180]) import(file = "stl/Vu7_Speaker_Bracket_Right.stl"); color("darkgrey",.5) translate([-((192.90-100)/2)+(width/2)-wallthick-gap-53.5,depth+11.5, case_z+27]) rotate([-vu_rotation[0],0,180]) hk_speaker(); } } if(case_design == "round" || case_design == "hex") { if(lower_bottom >= 0) { color("dimgrey",1) translate([0,0,-lower_bottom]) case_bottom(case_design); } if(sbc_off == false) { translate([pcb_loc_x ,pcb_loc_y,bottom_height-pcb_z+pcb_loc_z]) sbc(sbc_model, cooling, fan_size, gpio_opening, uart_opening, false); } if(raise_top >= 0) { color("grey",1) translate([0,0,raise_top]) case_top(case_design); } } if(case_design == "snap" || case_design == "fitted") { if(lower_bottom >= 0) { difference() { color("dimgrey",1) translate([0,0,-lower_bottom]) case_bottom(case_design); if(move_rear < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,-lower_bottom]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_front < 0) { translate([-gap-wallthick-1,depth-gap-wallthick-2.01,-lower_bottom]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_leftside < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,-lower_bottom]) cube([gap+wallthick+1.01,depth+2,case_z+2]); } if(move_rightside < 0) { translate([width-gap-wallthick-2.01,-gap-wallthick-1,-lower_bottom]) cube([gap+wallthick+1,depth+2,case_z+2]); } } } if(sbc_off == false) { translate([pcb_loc_x ,pcb_loc_y,bottom_height-pcb_z+pcb_loc_z]) sbc(sbc_model, cooling, fan_size, gpio_opening, uart_opening, false); } if(raise_top >= 0) { difference() { color("grey",1) translate([0,0,raise_top]) case_top(case_design); if(move_rear < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,raise_top]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_front < 0) { translate([-gap-wallthick-1,depth-gap-wallthick-2.01,raise_top]) cube([width+2,gap+wallthick+1.01,case_z+2]); } if(move_leftside < 0) { translate([-gap-wallthick-1,-gap-wallthick-1,raise_top]) cube([gap+wallthick+1.01,depth+2,case_z+2]); } if(move_rightside < 0) { translate([width-gap-wallthick-2.01,-gap-wallthick-1,raise_top]) cube([gap+wallthick+1,depth+2,case_z+2]); } } } } // model accessories if(accessory_name != "none") { for (i=[1:11:len(accessory_data[a[0]])-1]) { class = accessory_data[a[0]][i]; type = accessory_data[a[0]][i+1]; loc_x = accessory_data[a[0]][i+2]; loc_y = accessory_data[a[0]][i+3]; loc_z = accessory_data[a[0]][i+4]; face = accessory_data[a[0]][i+5]; rotation = accessory_data[a[0]][i+6]; parametric = accessory_data[a[0]][i+7]; size = accessory_data[a[0]][i+8]; data = accessory_data[a[0]][i+9]; mask = accessory_data[a[0]][i+10]; if (class == "model" && face == "top" && raise_top > -1) { parametric_move_add(type, loc_x, loc_y, loc_z+raise_top, face, rotation, parametric, size, data, [false,mask[1],mask[2],mask[3]]); } else { if (class == "model" && face != "top" ) { parametric_move_add(type, loc_x, loc_y, loc_z, face, rotation, parametric, size, data, [false,mask[1],mask[2],mask[3]]); } } } } if(case_design == "paper" && flat_blank_section == false) { case_folded(case_design, case_style); } if(case_design == "paper" && flat_blank_section == true) { projection() case_folded(case_design, case_style); } // create sbc information text if(sbc_information == true) { for (i=[0:1:len(sbc_data[s[0]][1])-1]) { color(text_color) translate([text_offset + text_indent[i], depth, (text_height-i*7)+raise_top]) rotate([90, 0, 0]) text(str(sbc_data[s[0]][1][i]), 5, font = text_font); } } if(case_design == "tray") { echo(Case_Width=width+2*sidethick,Depth=depth,Top=top_height,Bottom=bottom_height); } else { echo(Case_Width=width,Depth=depth,Top=top_height,Bottom=bottom_height); } } //} // part if (view == "part") { if(individual_part == "top") { if(case_design == "shell") { translate([0,depth,case_z]) rotate([180,0,0]) case_top(case_design); } if(case_design == "panel") { translate([0,depth,case_z]) rotate([180,0,0]) case_top(case_design); } if(case_design == "stacked") { translate([0,depth,case_z]) rotate([180,0,0]) case_top(case_design); } if(case_design == "tray") { translate([0,depth,case_z]) rotate([180,0,0]) case_top(case_design); } if(case_design == "round") { translate([width+30,depth,case_z-floorthick-gap]) rotate([180,0,0]) case_top(case_design); } if(case_design == "hex") { translate([2*width,depth,case_z]) rotate([180,0,0]) case_top(case_design); } if(case_design == "snap") { translate([0,depth,case_z+2*floorthick]) rotate([180,0,0]) case_top(case_design); } if(case_design == "fitted") { translate([0,depth,case_z+floorthick]) rotate([180,0,0]) case_top(case_design); } } if(individual_part == "bottom") { case_bottom(case_design); } if(individual_part == "front") { if(case_design == "panel") { translate([0,case_z,-depth+wallthick+gap+floorthick]) rotate([90,0,0]) case_side(case_design,case_style,"front"); } } if(individual_part == "rear") { if(case_design == "panel") { translate([0,0,-gap]) rotate([-90,0,0]) case_side(case_design,case_style,"rear"); } } if(individual_part == "right") { if(case_design == "panel") { translate([gap,0,-width+(2*wallthick)+gap]) rotate([0,-90,-90]) case_side(case_design,case_style,"right"); } if(case_design == "tray") { if(case_style == "vu5" || case_style == "vu7" || case_style == "sides") { translate([depth,0,width-gap]) rotate([0,90,90]) case_side(case_design,case_style,"right"); } } } if(individual_part == "left") { if(case_design == "panel") { translate([depth,0,-gap]) rotate([0,90,90]) case_side(case_design,case_style,"left"); } if(case_design == "tray") { if(case_style == "vu5" || case_style == "vu7" || case_style == "sides") { translate([gap,0,2*sidethick+gap]) rotate([0,-90,-90]) case_side(case_design,case_style,"left"); } } } if(individual_part == "accessories") { if(accessory_name != "none") { for (i=[1:11:len(accessory_data[a[0]])-1]) { class = accessory_data[a[0]][i]; type = accessory_data[a[0]][i+1]; loc_x = accessory_data[a[0]][i+2]; loc_y = accessory_data[a[0]][i+3]; loc_z = accessory_data[a[0]][i+4]; face = accessory_data[a[0]][i+5]; rotation = accessory_data[a[0]][i+6]; parametric = accessory_data[a[0]][i+7]; size_x = accessory_data[a[0]][i+8][0]; size_y = accessory_data[a[0]][i+8][1]; size_z = accessory_data[a[0]][i+8][2]; data_1 = accessory_data[a[0]][i+9][0]; data_2 = accessory_data[a[0]][i+9][1]; data_3 = accessory_data[a[0]][i+9][2]; data_4 = accessory_data[a[0]][i+9][3]; mask = accessory_data[a[0]][i+10]; if (class == "platter" && type != "button_top") { add(type, loc_x, loc_y, loc_z, face, rotation, [size_x, size_y, size_z], [data_1, data_2, data_3, data_4], mask); } if (class == "platter" && type == "button_top") { translate([loc_x,loc_y,loc_z+1.25]) rotate([-90,0,0]) button_plunger(data_3, size_x, size_z); translate([loc_x-20,loc_y-10,loc_z+3]) rotate([0,0,0]) button_top(data_3, size_x, size_z); translate([loc_x-20,loc_y-20,loc_z]) rotate([0,0,0]) button_clip(data_3); } if (class == "platter" && type == "h3_port_extender_holder") { translate([loc_x,loc_y,loc_z]) rotate([0,0,0]) h3_port_extender_holder("bottom"); translate([loc_x-20,loc_y+40,loc_z+36.5]) rotate([180,0,0]) h3_port_extender_holder("top"); } } } } if(case_design == "tray") { echo(width=width+2*sidethick,depth=depth,top=top_height,bottom=bottom_height); } else { echo(width=width,depth=depth,top=top_height,bottom=bottom_height); } }