Skip to content
Snippets Groups Projects
Commit 11472c0a authored by fxk8y's avatar fxk8y :spider:
Browse files

Saving progress for later

parent 29795590
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,10 @@
$fs = 0.35;
$fa = 0.50;
$str = 3; // base strength
$str1 = $str - 1; // strength for the smaller sides
$eps = 0.01; // epsilon
nozzle = 0.4;
......@@ -11,3 +15,41 @@ pcb_h = 21.5 + nozzle;
pcb_z_off = 11.6; // hieght of transceiver pcb above ground
// s = socket
s_h = 13;
s_w = pcb_w;
/* module PCBSocket() {
difference() {
union() {
// body
translate([0, 0, 0]) cube([s_w, s_h, pcb_z_off]);
// endings
pw2 = pcb_w / 2;
for (tx=[-pw2, pw2]) translate([tx, 0, 0]) cube([$str, 0, 0]);
}
}
} */
module PCBSocket() {
difference() {
square([pcb_w, pcb_h ], center=true);
square([pcb_w - 2*$str1, pcb_h - 2*$str], center=true);
}
}
PCBSocket();
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment