36 lines
1.3 KiB
OpenSCAD
36 lines
1.3 KiB
OpenSCAD
$fn=60;
|
|
|
|
include <BOSL2/std.scad>
|
|
include <boltsos_0.4.1/BOLTS.scad>
|
|
|
|
include <jetson_nano_board.scad>
|
|
|
|
mini_l=180;
|
|
nano_l=105;
|
|
nano_w=92;
|
|
frame_e=3;
|
|
p_height=15;
|
|
|
|
// holes_positions
|
|
color("orange") {
|
|
translate([-51.5,-45,-frame_e]) zcyl(l=7, d=20, anchor=BOTTOM);
|
|
translate([-51.5,45,-frame_e]) zcyl(l=7, d=20, anchor=BOTTOM);
|
|
translate([51.5,45,-frame_e]) zcyl(l=7, d=20, anchor=BOTTOM);
|
|
translate([51.5,-45,-frame_e]) zcyl(l=7, d=20, anchor=BOTTOM);
|
|
}
|
|
|
|
// base_plate
|
|
difference() {
|
|
union() {
|
|
cuboid([mini_l,mini_l,frame_e], rounding=3, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT], anchor=[0,0,1]);
|
|
cuboid([nano_l+8,nano_w+8,frame_e+5], rounding=3, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT], anchor=[0,0,-1]);
|
|
}
|
|
cuboid([nano_l,nano_w,p_height*2], rounding=3, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT]);;
|
|
*cuboid([nano_l+2,nano_w+2,frame_e+1], rounding=3, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT], anchor=[0,0,-1]);
|
|
*cuboid([nano_l-8,nano_w-8,frame_e*3], rounding=3, edges=[FWD+RIGHT,FWD+LEFT,BACK+RIGHT,BACK+LEFT]);
|
|
*cuboid([nano_l+12,nano_w-20,p_height], anchor=[0,0,-1]);
|
|
*cuboid([nano_l-20,nano_w+12,p_height], anchor=[0,0,-1]);
|
|
}
|
|
|
|
|
|
translate([0,0,10]) jetson(); |