Files
buildable-stick-system/src/panels/inset/lever-panel-with-mount.scad
Brian S. Stephan db887b668f reorganize all the parts into subdirectories
src/ was getting pretty unreadable and I finally had time to do
something about it

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-06-20 17:58:19 -05:00

16 lines
344 B
OpenSCAD

/*
* SPDX-FileCopyrightText: © 2023 Brian S. Stephan <bss@incorporeal.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
include <parameters.scad>
include <components.scad>
use <lever-panel.scad>
module lever_panel_with_mount() {
lever_panel();
translate([0, -panel_y/2+25, -(panel_z/2) - 3]) pcb_mount();
}
lever_panel_with_mount();