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
This commit is contained in:
Brian S. Stephan 2023-08-28 10:51:07 -05:00
parent 694e2c6173
commit e51b79a193
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
2 changed files with 37 additions and 0 deletions

View File

@ -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() {

View File

@ -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 <https://www.gnu.org/licenses/>.
*/
include <components.scad>
use <top-panel-solo-dir_arc-24mm-6-button.scad>
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();