Compare commits

...

2 Commits

Author SHA1 Message Date
e51b79a193
squeeze dir. arc + W w/8 buttons on one panel
it's a tight squeeze; fits in the frame, but frame buttons/quick
connects maybe a problem
2023-08-28 10:51:07 -05:00
694e2c6173
bring 5 mm back to the frame
to accommodate quick connects, levers, etc.
2023-08-28 10:47:53 -05:00
2 changed files with 38 additions and 1 deletions

View File

@ -45,7 +45,7 @@ lever_mount_z = 2;
// case dimensions
frame_x = 183;
frame_y = 208;
frame_z = 45; // reminder: inside (including mounts) is chopped by top_plate_z for plates
frame_z = 50; // reminder: inside (including mounts) is chopped by top_plate_z for plates
top_plate_x = 175;
top_plate_y = 200;
top_plate_z = 5;
@ -288,6 +288,13 @@ module dir_arc_24mm_6_button() {
translate([29.5+26.3+15.5, -65.2, 0]) button_30mm_hole_for_snapins();
}
// 6 button plus the normal fourth column for 8 button actually on a third row
module dir_arc_24mm_8_button_compressed() {
dir_arc_24mm_6_button();
translate([29.5+26.3+15.5+9.7+2.6+2.6, 29.4, 0]) button_24mm_hole_for_snapins();
translate([29.5+26.3+15.5+9.7+2.6+26.9+2.6, 40.3, 0]) button_24mm_hole_for_snapins();
}
// Directional Arc (left hand)
module dir_arc_30mm_button_l() {

View File

@ -0,0 +1,30 @@
/* Copyright Brian Stephan 2023
*
* This file is part of the Buildable Stick System.
*
* The Buildable Stick System 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.
*
* The Buildable Stick System 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
* the Buildable Stick System. If not, see <https://www.gnu.org/licenses/>.
*/
include <components.scad>
use <top-panel-solo-dir_arc-24mm-6-button.scad>
module dir_arc_plus_w_24mm_8_button_panel() {
difference() {
rotate([0, 0, -90]) topplate_with_raised_overhang();
translate([-top_plate_x+105, -top_plate_y/2+123, 0]) dir_arc_24mm_8_button_compressed();
translate([-34.5, 51, 0]) button_24mm_hole_for_snapins();
}
}
dir_arc_plus_w_24mm_8_button_panel();