account for 24mm buttons in the frame tops

This commit is contained in:
Brian S. Stephan 2023-08-19 17:47:44 -05:00
parent 7faa28b4b1
commit 6064884a89
Signed by: bss
GPG Key ID: 3DE06D3180895FCB
4 changed files with 34 additions and 3 deletions

View File

@ -205,6 +205,9 @@ module frame() {
frame_hex_bolt_hole();
translate([-((top_plate_x/2)-10), -((top_plate_y/2)-10), 0])
frame_hex_bolt_hole();
// thin up the mount point to accommodate snap-ins, ethercon adapter
translate([0, 10, 10]) cube([120, 180, 60], center=true);
}
}

View File

@ -34,6 +34,11 @@ module left_frame() {
// cable routing hole
frame_cable_routing_hole();
// aux button holes
translate([0, 100, 0]) rotate([90, 0, 0]) button_24mm_hole();
translate([-40, 100, 0]) rotate([90, 0, 0]) button_24mm_hole();
translate([40, 100, 0]) rotate([90, 0, 0]) button_24mm_hole();
}
}

View File

@ -42,9 +42,6 @@ module middle_frame() {
translate([0, 100, 0]) rotate([90, 0, 0]) neutrik_d_mount();
translate([-40, 100, 0]) rotate([90, 0, 0]) neutrik_d_mount();
translate([40, 100, 0]) rotate([90, 0, 0]) neutrik_d_mount();
// max panel thickness per ethercon
translate([0, 10, 10]) cube([120, 180, 60], center=true);
}
}

26
src/frame-right.scad Normal file
View File

@ -0,0 +1,26 @@
/* Copyright Brian Stephan 2023
*
* This file is part of bullet-system-stick.
*
* bullet-system-stick is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version.
*
* bullet-system-stick is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along with
* bullet-system-stick. If not, see <https://www.gnu.org/licenses/>.
*/
include <components.scad>
use <frame-left.scad>
module right_frame() {
mirror([1, 0, 0]) left_frame();
}
right_frame();