From: Ian Jackson Date: Sun, 21 Nov 2021 13:32:52 +0000 (+0000) Subject: adafruit-powerboost: wip common X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=84d410a41198f186914495f2e6d1edd0170b00b6;p=reprap-play.git adafruit-powerboost: wip common Signed-off-by: Ian Jackson --- 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(); + } +} +