From 997982a8a8c67bd269af53626eed5e1a9f21a5e2 Mon Sep 17 00:00:00 2001 From: Johannes Wendel Date: Tue, 7 Jul 2026 22:25:28 +0200 Subject: [PATCH] Add models for rough dimensions of pieces --- model/dimensions.scad | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 model/dimensions.scad diff --git a/model/dimensions.scad b/model/dimensions.scad new file mode 100644 index 0000000..3dc27a6 --- /dev/null +++ b/model/dimensions.scad @@ -0,0 +1,18 @@ +module main_display(){ + // Outer dimensions (incl. PCB), height currently unknown + cube([55.04, 89.3, 10]); +} + +module pad(){ + // A button has 4.2 x 6 mm -> At least ~20x20 are required for the PCB + cube([20, 20, 10]); +} + +module small_display_below_main() +{ + // Outer dimensions (incl. PCB) + // https://de.aliexpress.com/item/1005005473564682.html#nav-specification + cube([43.5, 19.44, 4.5]); +} + +#small_display_below_main(); \ No newline at end of file