From 900ca8c75199c21f0a2c006d0849004c3a64c9e9 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Fri, 20 Sep 2024 08:13:16 -0500 Subject: [PATCH] add a three-button cluster for the aux buttons on a panel Q2009-specific for now, though maybe one day I'll use the cluster on a frame wall, in which case I'd move this to the "core" collection of parts Signed-off-by: Brian S. Stephan --- ...ux-control-tight-three-button-cluster.scad | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/extras/q2009/decorative-plate-aux-control-tight-three-button-cluster.scad diff --git a/src/extras/q2009/decorative-plate-aux-control-tight-three-button-cluster.scad b/src/extras/q2009/decorative-plate-aux-control-tight-three-button-cluster.scad new file mode 100644 index 0000000..ab13071 --- /dev/null +++ b/src/extras/q2009/decorative-plate-aux-control-tight-three-button-cluster.scad @@ -0,0 +1,24 @@ +/* Decorative plate for aux buttons. + * + * SPDX-FileCopyrightText: © 2024 Brian S. Stephan + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +include +decorative_radius_scale = 1.5; +jumbo_decorative_radius_scale = 0; +include + +module aux_control_three_button_tight_cluster_decorative_plate() { + difference() { + // get a 2mm slice of the bigger button cylinders + translate([0, 0, -25]) hull() aux_control_three_button_tight_cluster(); + // keep a thin slice + translate([0, 0, -100]) cube([500, 500, 198], center=true); + translate([0, 0, 100]) cube([500, 500, 198], center=true); + // cut out the normal holes + translate([0, 0, -1]) aux_control_three_button_tight_cluster(); + } +} + +aux_control_three_button_tight_cluster_decorative_plate();