You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
434 B
24 lines
434 B
include <config.scad> |
|
|
|
if (is_undef(noPcbPrev) || noPcbPrev == false) { |
|
placedPcb(); |
|
} |
|
|
|
// ------------------- |
|
|
|
module pcb() { |
|
translate([32.01, 18.255, 4.14]) { |
|
rotate(-90, [0,0,1]) { |
|
rotate(90, [1,0,0]) { |
|
color(pcbColor, pcbAlpha) |
|
import("mqtrigger.stl"); |
|
} |
|
} |
|
} |
|
} |
|
|
|
module placedPcb() { |
|
translate([pcbX, pcbY, pcbZ]) { |
|
pcb(); |
|
} |
|
} |