Generated models for left and right hand

This commit is contained in:
2025-09-12 22:12:02 +02:00
parent 0c68eedebe
commit d9a90190f7
8 changed files with 21 additions and 8 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -146,12 +146,7 @@ rightTopDampener();
cylinder(h=$magnetHeight, r=$magnetRadius); cylinder(h=$magnetHeight, r=$magnetRadius);
} }
} }
module case(){ $baseHeight = 7.6;
// Then adjust the shim, aux and pico.
// Last add magnets, don't forget the clearance.
$baseHeight = 7.6;
module aux(){ module aux(){
$topLeftOfPcbToCenterOfAux = 15.4; $topLeftOfPcbToCenterOfAux = 15.4;
$measurementPcbPlaneToCenterOfAux = 2.8; $measurementPcbPlaneToCenterOfAux = 2.8;
@@ -210,6 +205,13 @@ module case(){
]); ]);
} }
} }
module case(){
// Then adjust the shim, aux and pico.
// Last add magnets, don't forget the clearance.
module shim(){ module shim(){
$shimPoints = [ $shimPoints = [
[0 - $shellWidth / 2, - $baseHeight], [0 - $shellWidth / 2, - $baseHeight],
@@ -327,8 +329,19 @@ module lid(){
magnets(); magnets();
} }
} }
module botDampener(){
difference(){
topDampeners();
aux();
translate([0,0,2])
pico();
}
}
mirror([1,0,0]){
*%pcb(); *%pcb();
%topDampeners(); *topDampeners();
case(); *botDampener();
*case();
lid(); lid();
}