this allows for the traditional 8 buttons plus L3, R3, and TP, all on one hand. I'm going to use this for the q2009 stuff, especially, but it might be an interesting option for all arcade sticks Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
18 lines
378 B
OpenSCAD
18 lines
378 B
OpenSCAD
/* A panel with the Sega 2P button layout plus three extra buttons for whatever purpose.
|
|
*
|
|
* SPDX-FileCopyrightText: © 2024 Brian S. Stephan <bss@incorporeal.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
include <parameters.scad>
|
|
include <components.scad>
|
|
|
|
module sega_2p_eleven_panel() {
|
|
difference() {
|
|
panel();
|
|
sega_2p_eleven();
|
|
}
|
|
}
|
|
|
|
sega_2p_eleven_panel();
|