diff --git a/src/components.scad b/src/components.scad
index c240c44..d9db042 100644
--- a/src/components.scad
+++ b/src/components.scad
@@ -333,19 +333,30 @@ module dir_arc_24mm_directionals() {
module dir_arc_24mm_6_button() {
dir_arc_24mm_directionals();
- translate([29.5+26.3+15.5+9.7+2.6, 0, 0]) button_24mm_hole();
- translate([29.5+26.3+15.5+9.7+2.6+26.9, 10.9, 0]) button_24mm_hole();
- translate([29.5+26.3+15.5+9.7+2.6+26.9+29.6, 10.9, 0]) button_24mm_hole();
+ translate([29.5+26.3+27.8, 0, 0]) button_24mm_hole();
+ translate([29.5+26.3+27.8+26.9, 10.9, 0]) button_24mm_hole();
+ translate([29.5+26.3+27.8+26.9+29.6, 10.9, 0]) button_24mm_hole();
translate([29.5+26.3+15.5+9.7, -29.4, 0]) button_24mm_hole();
- translate([29.5+26.3+15.5+9.7+2.6+26.9-1.7, 10.9-30.1, 0]) button_24mm_hole();
- translate([29.5+26.3+15.5+9.7+2.6+26.9+29.6, 10.9-30.1, 0]) button_24mm_hole();
+ translate([29.5+26.3+27.8+26.9-1.7, 10.9-30.1, 0]) button_24mm_hole();
+ translate([29.5+26.3+27.8+26.9+29.6-0.2, 10.9-30.1, 0]) button_24mm_hole();
+}
+
+module dir_arc_24mm_8_button() {
+ dir_arc_24mm_6_button();
+ translate([29.5+26.3+27.8+26.9+29.6+29.5, 7.1, 0]) button_24mm_hole();
+ translate([29.5+26.3+27.8+26.9+29.6+29.5-0.3, -23.9, 0]) button_24mm_hole();
}
// 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();
- translate([29.5+26.3+15.5+9.7+2.6+26.9+2.6, 40.3, 0]) button_24mm_hole();
+ translate([29.5+26.3+27.8+2.6, 29.4, 0]) button_24mm_hole();
+ translate([29.5+26.3+27.8+26.9+2.6, 40.3, 0]) button_24mm_hole();
+}
+
+module dir_arc_plus_w_24mm_8_button() {
+ dir_arc_24mm_8_button();
+ translate([36, 28, 0]) button_24mm_hole();
}
// Directional Arc (left hand)
diff --git a/src/misc-decorative-plate-dir_arc-plus-w-24mm-8-button.scad b/src/misc-decorative-plate-dir_arc-plus-w-24mm-8-button.scad
new file mode 100644
index 0000000..cb4fa02
--- /dev/null
+++ b/src/misc-decorative-plate-dir_arc-plus-w-24mm-8-button.scad
@@ -0,0 +1,33 @@
+/* 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 .
+ */
+
+include
+
+module dir_arc_plus_w_24mm_8_button_decorative_plate() {
+ difference() {
+ decorative_add=10;
+ // get a 1mm slice of the bigger button cylinders
+ translate([0, 0, -45]) dir_arc_plus_w_24mm_8_button();
+ translate([0, 0, -50]) cube([500, 500, 98], center=true);
+ translate([0, 0, 50]) cube([500, 500, 98], center=true);
+ // cut out the normal holes
+ translate([0, 0, -1]) dir_arc_plus_w_24mm_8_button();
+ }
+}
+
+dir_arc_plus_w_24mm_8_button_decorative_plate();
diff --git a/src/top-panel-solo-dir_arc-plus-w-24mm-8-button.scad b/src/top-panel-solo-dir_arc-plus-w-24mm-8-button.scad
index a03fbcb..9163cee 100644
--- a/src/top-panel-solo-dir_arc-plus-w-24mm-8-button.scad
+++ b/src/top-panel-solo-dir_arc-plus-w-24mm-8-button.scad
@@ -21,8 +21,7 @@ include
module dir_arc_plus_w_24mm_8_button_panel() {
difference() {
top_plate_with_raised_overhang();
- translate([-71.5, -top_plate_y/2+122.5, 0]) dir_arc_24mm_8_button_compressed();
- translate([-34.5, 51, 0]) button_24mm_hole();
+ translate([-80.5, top_plate_y/6, 0]) dir_arc_plus_w_24mm_8_button();
}
}