for both left and right hands, these layouts have a WASD layout as a base, with the left and right sides pulled slightly down from the center, and with 8+ button layouts pulling down even further to match the arg for the pinky finger locations. I've been playing with this for a while, and think I like it, at least like it enough to commit it Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
16 lines
409 B
OpenSCAD
16 lines
409 B
OpenSCAD
/*
|
|
* SPDX-FileCopyrightText: © 2025 Brian S. Stephan <bss@incorporeal.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
include <parameters.scad>
|
|
include <components.scad>
|
|
use <ergo-nine-plus-aux-button.scad>
|
|
|
|
module ergo_nine_plus_aux_button_panel_with_mount() {
|
|
ergo_nine_plus_aux_button_panel();
|
|
translate([30, -50, -(panel_z/2) - 3]) pcb_mount();
|
|
}
|
|
|
|
ergo_nine_plus_aux_button_panel_with_mount();
|