aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2020-08-21 09:54:46 +0100
committerdakkar <dakkar@thenautilus.net>2020-08-21 09:54:46 +0100
commitb162b6b29858f920f036ed4e15f56a5ff9d809d5 (patch)
treebabd5ae7afe9acc92f7e3c9ab833aa04dd912065
parentconnectors (diff)
downloadlego-piano-b162b6b29858f920f036ed4e15f56a5ff9d809d5.tar.gz
lego-piano-b162b6b29858f920f036ed4e15f56a5ff9d809d5.tar.bz2
lego-piano-b162b6b29858f920f036ed4e15f56a5ff9d809d5.zip
comment on amp support
-rw-r--r--3d-print/controller.scad4
1 files changed, 3 insertions, 1 deletions
diff --git a/3d-print/controller.scad b/3d-print/controller.scad
index d75aadc..8822336 100644
--- a/3d-print/controller.scad
+++ b/3d-print/controller.scad
@@ -34,8 +34,11 @@ module resistors() {
difference() {
union() {
cube([40,90,1.25]);
+ // this is the support for the amp, must be moved together
+ // with the amp vias below
translate([12.5,70,0.5]) cube([15,10,3.5]);
}
+ translate([30,67.5,0]) rotate([0,0,90]) amp();
translate([6.25,8.5,0]) esp32();
translate([11.5,-1.5,-1]) cube([17,15,3]);
@@ -59,5 +62,4 @@ difference() {
translate([25,57,0]) rotate([0,0,-90]) vias100mil(5);
translate([15,60,0]) rotate([0,0,-90]) vias100mil(5);
- translate([30,67.5,0]) rotate([0,0,90]) amp();
}