From 653f02ba4c9b8d5b3e7d334b8d049ec94fd24bc9 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Fri, 9 Feb 2024 15:00:05 -0600 Subject: [PATCH] grow the frame, remove the bottom panel basin the bottom panel had a basin or tray to make room for taller levers, namely the Seimitsu LSX-NOBI that I really like. per its specs, the lever needs 43.70mm internally, and the old values were too tight (55mm - 19mm from panels - 2mm from lever plate = 43) so the bottom panel was arbitrarily given a sunken portion (somewhat arbitrarily 2.5mm) to compensate at the time, because I already had frames printed. adding 2mm to the frame Z covers the difference (57mm - 10mm - 2mm = 45mm) and thus we don't need the bottom panel hack anymore. I also suspect the bottom panel basin was slightly affecting it structurally, so this may help that. --- src/bottom-panel-inset.scad | 5 +---- src/parameters.scad | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/bottom-panel-inset.scad b/src/bottom-panel-inset.scad index a05721e..2a5e3c4 100644 --- a/src/bottom-panel-inset.scad +++ b/src/bottom-panel-inset.scad @@ -7,10 +7,7 @@ include include module bottom_panel() { - difference() { - mirror([0, 0, 1]) panel(); - translate([0, 0, panel_z/2]) cube([panel_x-40, panel_y-40, panel_z], center=true); - } + mirror([0, 0, 1]) panel(); } bottom_panel(); diff --git a/src/parameters.scad b/src/parameters.scad index 0249456..51a3190 100644 --- a/src/parameters.scad +++ b/src/parameters.scad @@ -35,7 +35,7 @@ lever_plate_hole = 12; // base frame box. reminder: top of inside (including mounts) is chopped by panel_z for plates frame_x = 233; frame_y = 208; -frame_z = 55; +frame_z = 57; frame_center_to_neutrik = 70;