From 84d410a41198f186914495f2e6d1edd0170b00b6 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 21 Nov 2021 13:32:52 +0000 Subject: [PATCH] adafruit-powerboost: wip common Signed-off-by: Ian Jackson --- adafruit-powerboost-500.scad | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/adafruit-powerboost-500.scad b/adafruit-powerboost-500.scad index d946bda..a6e2203 100644 --- a/adafruit-powerboost-500.scad +++ b/adafruit-powerboost-500.scad @@ -33,7 +33,7 @@ module PsuLedBafflePlan(){ } } -module PsuLedWindowsPlan(){ +module PsuLedWindowsPlanCore(){ difference(){ union(){ AtPsuMountCorner(1,0) { @@ -56,9 +56,15 @@ module PsuLedWindowsPlan(){ psu_innerend_led_depth]); } } - PsuLedBafflePlan(); translate([0, -psu_sz[1]/2]) square(center=true, [psu_baffle_th[1], psu_sz[1]]);; } } +module PsuLedWindowsPlan(){ + difference(){ + PsuLedWindowsPlanCore(); + PsuLedBafflePlan(); + } +} + -- 2.30.2