mirror of
https://github.com/pgrondek/SixInchRack.git
synced 2024-11-22 20:13:42 +00:00
72 lines
1.7 KiB
OpenSCAD
Executable File
72 lines
1.7 KiB
OpenSCAD
Executable File
include<../sixinch_library.scad>
|
|
|
|
|
|
///////////////////////////////
|
|
// Raspberry Pi Model B //
|
|
///////////////////////////////
|
|
|
|
print_frontplate_sml = true;
|
|
print_handle_sml = true;
|
|
print_cabinet_sml = true;
|
|
print_lid = true;
|
|
print_rear = true;
|
|
|
|
if(print_frontplate_sml){ // Frontplate //
|
|
square_hole = [[60 ,3, 28, 4]];
|
|
round_hole = [[105 ,5, 3.4],[110 ,5, 3.4]];
|
|
round_peg = [];
|
|
screw_side_front = [];
|
|
screw_top = [36];
|
|
screw_bottom_front = [36];
|
|
units = 2;
|
|
frontplate(units,square_hole,round_hole,round_peg,screw_side_front,screw_top,screw_bottom_front);
|
|
|
|
}
|
|
|
|
if(print_handle_sml){ // Handle //
|
|
units = 2;
|
|
lay_flat_for_print = false;
|
|
handle(units,lay_flat_for_print);
|
|
}
|
|
|
|
if(print_cabinet_sml){ // Cabinet //
|
|
screw_bottom_front = [36];
|
|
screw_side_front = [];
|
|
round_peg = [[40,35,6,screw_hole,6],
|
|
[65,90,6,screw_hole,6],
|
|
[32,90,6,0,6],
|
|
[65,35,6,0,6]];
|
|
depth = 98;
|
|
units = 2;
|
|
cabinet(depth,units,screw_bottom_front,round_peg,screw_side_front);
|
|
}
|
|
|
|
if(print_lid){ // Lid //
|
|
depth = 98;
|
|
units = 2;
|
|
screw_front = [36];//mm
|
|
screw_back = [36];//mm
|
|
lid(98,2,screw_front,screw_back);
|
|
}
|
|
|
|
if(print_rear){ // Back plate //
|
|
square_hole = [[17+5 ,5, 18, 15] , [38+5 ,5, 17, 17] , [70+8,5,10,3] ];
|
|
round_hole = [];
|
|
screw_top = [36];//mm
|
|
screw_bottom = [36];//mm
|
|
screw_side = [];
|
|
depth = 98;
|
|
units = 2;
|
|
back_plate(units,depth,screw_top,screw_bottom,screw_side,square_hole,round_hole);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|