From e51b79a193d4ef635ac6bff7f858fca7a10a844a Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Mon, 28 Aug 2023 10:51:07 -0500 Subject: [PATCH] squeeze dir. arc + W w/8 buttons on one panel it's a tight squeeze; fits in the frame, but frame buttons/quick connects maybe a problem --- src/components.scad | 7 +++++ ...nel-solo-dir_arc-plus-w-24mm-8-button.scad | 30 +++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 src/top-panel-solo-dir_arc-plus-w-24mm-8-button.scad diff --git a/src/components.scad b/src/components.scad index cbae841..dae9573 100644 --- a/src/components.scad +++ b/src/components.scad @@ -288,6 +288,13 @@ module dir_arc_24mm_6_button() { translate([29.5+26.3+15.5, -65.2, 0]) button_30mm_hole_for_snapins(); } +// 6 button plus the normal fourth column for 8 button actually on a third row +module dir_arc_24mm_8_button_compressed() { + dir_arc_24mm_6_button(); + translate([29.5+26.3+15.5+9.7+2.6+2.6, 29.4, 0]) button_24mm_hole_for_snapins(); + translate([29.5+26.3+15.5+9.7+2.6+26.9+2.6, 40.3, 0]) button_24mm_hole_for_snapins(); +} + // Directional Arc (left hand) module dir_arc_30mm_button_l() { diff --git a/src/top-panel-solo-dir_arc-plus-w-24mm-8-button.scad b/src/top-panel-solo-dir_arc-plus-w-24mm-8-button.scad new file mode 100644 index 0000000..849024d --- /dev/null +++ b/src/top-panel-solo-dir_arc-plus-w-24mm-8-button.scad @@ -0,0 +1,30 @@ +/* Copyright Brian Stephan 2023 + * + * This file is part of the Buildable Stick System. + * + * The Buildable Stick System is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by the + * Free Software Foundation, either version 3 of the License, or (at your + * option) any later version. + * + * The Buildable Stick System is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * the Buildable Stick System. If not, see . + */ + +include +use + +module dir_arc_plus_w_24mm_8_button_panel() { + difference() { + rotate([0, 0, -90]) topplate_with_raised_overhang(); + translate([-top_plate_x+105, -top_plate_y/2+123, 0]) dir_arc_24mm_8_button_compressed(); + translate([-34.5, 51, 0]) button_24mm_hole_for_snapins(); + } +} + +dir_arc_plus_w_24mm_8_button_panel();