Skip to content

Commit

Permalink
add slot to jig
Browse files Browse the repository at this point in the history
  • Loading branch information
goldfishlaser committed Jun 16, 2024
1 parent a9e5882 commit f4df1f0
Show file tree
Hide file tree
Showing 2 changed files with 28,134 additions and 26,776 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ size_difference = .9; // right now the code just uses pogo pin code scaled down

//jig slot variables

js_w=18;
js_w=18+4;// diff=4 to give room for slots?
js_h=8;
js_l=4.5;

Expand Down Expand Up @@ -156,19 +156,33 @@ color("grey") rotate ([90,0,0])translate([magnet_position_x,magnet_position_y,ma


// wire jigs

jig_w=21; //diff=4 to add room for slot
jig_h=2;
jig_l=7;

slot_w=1;
slot_h=jig_h/2;
slot_l=jig_l;

module slot(){translate([0,0,slot_h+.1])cube(size=[slot_w,slot_l,slot_h], center=false);}

module jig(){
j_d=20; //distance between jigs

translate([.6,0,.8])slot();
translate([jig_w-2,0,.8])slot();
difference(){
cube(size = [17,7,2],center=false);
translate([0,3.5,-2])pogos();
}
cube(size = [jig_w,jig_l,jig_h],center=false);
translate([2,3.5,-2])pogos();
} //diff 2 to center

translate([0,j_d,0])
difference(){
cube(size = [17,7,2],center=false);
translate([0,3.5,-2])pogos();
}
cube(size = [jig_w,jig_l,jig_h],center=false);
translate([2,3.5,-2])pogos();
translate([.6,0,0])slot();
translate([jig_w-2,0,0])slot();
} //diff 2 to center

}
//jig();
Expand Down
Loading

0 comments on commit f4df1f0

Please sign in to comment.