create a top left (overhang) lever panel

this replaces the left-adjusted inset panel, which I didn't use anyway,
and starts normalizing the overhang panels more
This commit is contained in:
Brian S. Stephan 2023-09-01 13:38:29 -05:00
parent 43a036e17c
commit bfae2b093b
Signed by: bss
GPG Key ID: 3DE06D3180895FCB

View File

@ -19,22 +19,17 @@
include <components.scad> include <components.scad>
// combine the lever mount and generic plate, with mounting holes // combine the lever mount and generic plate, with mounting holes
module left_lever_panel() { module top_panel_left_lever() {
difference() { difference() {
// base plate // base plate
union() { union() {
translate([20,-20,0]) translate([0,-20,0]) topplate_with_raised_overhang();
topplate();
translate([0, 0, -((top_plate_z/2)+(lever_mount_z/2))]) levermountbase(); translate([0, 0, -((top_plate_z/2)+(lever_mount_z/2))]) levermountbase();
} }
// holes to mount the lever // holes to mount the lever
levermountholes(); levermountholes();
side_chopper();
} }
} }
module left_lever_panel_with_mount() { top_panel_left_lever();
left_lever_panel();
translate([0, -top_plate_y/2+25, -(top_plate_z/2) - 3]) pcb_mount();
}
left_lever_panel_with_mount();