shrink the JLF mount panel height by 1mm

trying to shave a couple mm off the design to make room for this Seimitsu SEL-70X-F
This commit is contained in:
Brian S. Stephan 2023-08-20 23:43:32 -05:00
parent 80079a74a8
commit f5ecdc9154
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
3 changed files with 8 additions and 3 deletions

View File

@ -4,6 +4,7 @@ Notes for "next time".
## v2 ## v2
* I need at least 5mm, maybe 10mm, more height, to fit some of my levers like the Nobi Bullet
* The panels' connection points could probably be a bit thinner to accommodate more bolts. A 20mm bolt barely clears the * The panels' connection points could probably be a bit thinner to accommodate more bolts. A 20mm bolt barely clears the
two panels and I don't like that kind of bolt connection. two panels and I don't like that kind of bolt connection.
* Engraving some cosmetic stuff? Or maybe a place to mount other plates? * Engraving some cosmetic stuff? Or maybe a place to mount other plates?

View File

@ -34,6 +34,11 @@ small_button_radius = 12 + hole_tolerance;
// 30mm button // 30mm button
big_button_radius = 15 + hole_tolerance; big_button_radius = 15 + hole_tolerance;
// JLF mount dimensions
lever_mount_x = 53;
lever_mount_y = 95;
lever_mount_z = 2;
// case dimensions // case dimensions
frame_x = 183; frame_x = 183;
frame_y = 208; frame_y = 208;
@ -91,7 +96,7 @@ module neutrik_d_mount() {
module levermountbase() { module levermountbase() {
difference() { difference() {
// base plate // base plate
cube([53,95,3], center=true); cube([lever_mount_x, lever_mount_y, lever_mount_z], center=true);
// joystick hole // joystick hole
cylinder(r=21, h=3.1, $fn=50, center=true); cylinder(r=21, h=3.1, $fn=50, center=true);
} }

View File

@ -25,8 +25,7 @@ module left_lever_panel() {
union() { union() {
translate([20,-20,0]) translate([20,-20,0])
topplate(); topplate();
translate([0,0,-4]) translate([0, 0, -((top_plate_z/2)+(lever_mount_z/2))]) levermountbase();
levermountbase();
} }
// holes to mount the lever // holes to mount the lever
levermountholes(); levermountholes();