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:
parent
80079a74a8
commit
f5ecdc9154
1
TODO.md
1
TODO.md
@ -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?
|
||||||
|
@ -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);
|
||||||
}
|
}
|
||||||
|
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user