chiark / gitweb /
adafruit-powerboost: wip common
[reprap-play.git] / adafruit-powerboost-500.scad
index d946bdae287db0e0f0e0cda5055eb0c1d508ae92..a6e2203cafb424d189170e36442a41f4f7c77ea5 100644 (file)
@@ -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();
+  }
+}
+