From: Ian Jackson Date: Sun, 21 Nov 2021 23:22:09 +0000 (+0000) Subject: adafruit-powerboost: battery legend wip test X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=reprap-play.git;a=commitdiff_plain;h=cdb9e9ca7f9adaad277a92642227a8d97cc05188 adafruit-powerboost: battery legend wip test Signed-off-by: Ian Jackson --- diff --git a/adafruit-powerboost-common.scad b/adafruit-powerboost-common.scad index 2fe3ce1..154b5f8 100644 --- a/adafruit-powerboost-common.scad +++ b/adafruit-powerboost-common.scad @@ -280,7 +280,7 @@ module PsuMountTestFullMain() { ////toplevel module PsuMountTestFullOneLayer(ix) { linextr(0, psu_initial_layer_thick) { PsuMountTestFullLayerFrame(ix); - children(); + translate([0, psu_y]) children(); } } @@ -293,3 +293,9 @@ module PsuMountTestFullWindows() { ////toplevel PsuMountTestFullOneLayer(1) PsuLedWindowsPlan(); } + +module PsuMountTestFullDemo() { ////toplevel + color("blue") PsuMountTestFullMain(); + color("yellow") PsuMountTestFullText(); + %PsuMountTestFullWindows(); +}