/Designs/Measuring_instruments/RMDS02D/CAD/src/connectors_holder.scad
1,13 → 1,13
use<Write.scad>
$fn=100;
 
x_size = 20; // horizontal outer size of the aquarium pedestal.
x_size = 20; // horizontal outer size of the pedestal.
y_size = 20; //
mount_hole = 3.5;
nut_size = 6.8;
SMA_dia = 7.1;
thickness = 10; //
wall_thickness = 3;
wall_thickness = 2;
height = 55;
 
mount_hole = 3.7;
43,9 → 43,10
 
difference () {
 
translate ([0, -wall_thickness, 0])
translate ([0, -wall_thickness, 0]) // vertical brick
cube([y_size, wall_thickness , height ]);
 
// SMA connector holes
translate ([ x_size/2, wall_thickness/2, (height - thickness)/3 + thickness - SMA_dia/2])
rotate([90,0,0]) {
difference () {
62,10 → 63,11
translate([ 0, SMA_dia/2 , wall_thickness/2 + wall_thickness ])
cube([SMA_dia, 1 , thickness ], center=true);
}
}
}
 
/* translate ([ x_size/2, wall_thickness/2, (height - thickness)/3 + thickness - SMA_dia/2])
}
// texts
translate ([ x_size/2, wall_thickness/2, (height - thickness)/3 + thickness - SMA_dia/2])
rotate([90,0,0]) {
translate([ 0, -11, wall_thickness/2 + wall_thickness ])
rotate([0,0,180])
76,9 → 78,12
rotate([90,0,0]){
translate([ 0, -11, wall_thickness/2 + wall_thickness])
rotate([0,0,180])
write("ANT",h=5,t=3, space= 1.1, font = "Letters.dxf",center=true);
write("ANT",h=5,t=2, space= 1.1, font = "Letters.dxf",center=true);
}
*/
}
}