From d1a8f34c2a225512201bee23a4a8dc79f3bcc365 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Tue, 24 Sep 2024 07:51:57 -0500 Subject: [PATCH] another aux panel, this with a hole for a rocker switch I realized pretty late in the build here that I didn't have a way to access the Fn switch, so I'm just going to try putting it away at the top back for now Signed-off-by: Brian S. Stephan --- ...anel-three-aux-buttons-and-rocker-hole.scad | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/extras/q2009/panel-three-aux-buttons-and-rocker-hole.scad diff --git a/src/extras/q2009/panel-three-aux-buttons-and-rocker-hole.scad b/src/extras/q2009/panel-three-aux-buttons-and-rocker-hole.scad new file mode 100644 index 0000000..6fc5a9f --- /dev/null +++ b/src/extras/q2009/panel-three-aux-buttons-and-rocker-hole.scad @@ -0,0 +1,18 @@ +/* A panel for mounting a couple aux buttons in a out of the way spot. + * + * SPDX-FileCopyrightText: © 2024 Brian S. Stephan + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +include +include + +module three_aux_button_and_20mm_panel() { + difference() { + panel(); + translate([0, -70, 0]) aux_control_three_button_tight_cluster(); + translate([0, frame_y/2-30, 0]) rotate([180, 0, 0]) neutrik_d_mount(); + } +} + +three_aux_button_and_20mm_panel();