create a panel with three aux buttons in a tight cluster
the idea of this is to have Select, Home, and Start buttons accessible via this panel away from the action panels, and the action pannels have the L3, TP, and R3 buttons in the Sega 2P 11 layout, and then there is no need for buttons on the back of the q2009 enclosure. I don't think this would get used for any reason other than q2009 so it lives there. Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
This commit is contained in:
parent
0cdd0ae846
commit
b826ecaccf
@ -94,6 +94,12 @@ module aux_control_three_button_cluster() {
|
||||
translate([37, 0, 0]) button_24mm_hole();
|
||||
}
|
||||
|
||||
module aux_control_three_button_tight_cluster() {
|
||||
translate([-32, 0, 0]) button_24mm_hole();
|
||||
translate([0, 0, 0]) button_24mm_hole();
|
||||
translate([32, 0, 0]) button_24mm_hole();
|
||||
}
|
||||
|
||||
module m2_mount_post() {
|
||||
difference() {
|
||||
cylinder(r=m2_screw_selftap_radius*2.25, h=3, $fn=6, center=true);
|
||||
|
17
src/extras/q2009/panel-three-aux-buttons.scad
Normal file
17
src/extras/q2009/panel-three-aux-buttons.scad
Normal file
@ -0,0 +1,17 @@
|
||||
/* A panel for mounting a couple aux buttons in a out of the way spot.
|
||||
*
|
||||
* SPDX-FileCopyrightText: © 2024 Brian S. Stephan <bss@incorporeal.org>
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*/
|
||||
|
||||
include <parameters.scad>
|
||||
include <components.scad>
|
||||
|
||||
module three_aux_button_panel() {
|
||||
difference() {
|
||||
panel();
|
||||
translate([0, -70, 0]) aux_control_three_button_tight_cluster();
|
||||
}
|
||||
}
|
||||
|
||||
three_aux_button_panel();
|
Loading…
Reference in New Issue
Block a user