diff options
author | xengineering <me@xengineering.eu> | 2024-01-27 20:08:40 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-27 20:16:49 +0100 |
commit | 6b6ed366ad186dce77467fc6e1ea97fa25ac393e (patch) | |
tree | f6392dde30b353c963cda2e787e8c7f59557d71c | |
parent | 13ffb7887a6d0eb488eb957b133194fec89198de (diff) | |
download | soundbox-6b6ed366ad186dce77467fc6e1ea97fa25ac393e.tar soundbox-6b6ed366ad186dce77467fc6e1ea97fa25ac393e.tar.zst soundbox-6b6ed366ad186dce77467fc6e1ea97fa25ac393e.zip |
mech: Fix chinch hole position
-rw-r--r-- | mech/panel_front.scad | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mech/panel_front.scad b/mech/panel_front.scad index f430789..da06927 100644 --- a/mech/panel_front.scad +++ b/mech/panel_front.scad @@ -18,7 +18,7 @@ module panel_front(pcb_dim, margins, t) { micro_usb_hole(pcb_dim, margins, t, v[1]); } } - for(y = [cinch_max_y-cinch_d/2, cinch_max_y-cinch_delta_y+cinch_d/2]) { + for(y = [cinch_min_y+0.5*cinch_d, cinch_min_y+1.5*cinch_d+cinch_delta_y]) { translate([0, y, 0]) { cinch_hole(pcb_dim, margins, t); } @@ -56,9 +56,9 @@ module micro_usb_hole(pcb_dim, margins, t, dx) { } } -cinch_d = 8.8; -cinch_delta_y = 24.5; -cinch_max_y = 70.4; +cinch_d = 8.3; +cinch_min_y = 45; +cinch_delta_y = 8.2; cinch_max_z = 34.25; module cinch_hole(pcb_dim, margins, t) { case_dim = dim_pcb_to_case(pcb_dim, margins, t); |