summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXANTRONIX Development2023-11-26 00:32:40 -0500
committerXANTRONIX Development2023-11-26 00:32:40 -0500
commit3f65b9f62c1f53a341f6e0d0c7109003d10da807 (patch)
tree9395a7bbfbde9d38aae8f1ba83386bc545157c66
parent339168e6d7d28e618aa74147bf7b6bee5c0e9eda (diff)
downloadxantronix-z32-3f65b9f62c1f53a341f6e0d0c7109003d10da807.tar.gz
xantronix-z32-3f65b9f62c1f53a341f6e0d0c7109003d10da807.tar.bz2
xantronix-z32-3f65b9f62c1f53a341f6e0d0c7109003d10da807.zip
Slowly working things out
-rw-r--r--case/params.scad4
-rw-r--r--case/top.scad2
2 files changed, 5 insertions, 1 deletions
diff --git a/case/params.scad b/case/params.scad
index 2935b4b..b33502a 100644
--- a/case/params.scad
+++ b/case/params.scad
@@ -1,3 +1,7 @@
+/* [Features] */
+// Enable or disable keyboard deck
+with_keyboard = true;
+
/* [Case wall dimensions:] */
// Wall width (thickness)
wall_width = 2.5000;
diff --git a/case/top.scad b/case/top.scad
index b9c86e7..951cde8 100644
--- a/case/top.scad
+++ b/case/top.scad
@@ -216,4 +216,4 @@ module top_case(with_keyboard=false) {
}
}
-top_case(true);
+top_case(with_keyboard);