1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-09-03 04:12:35 +02:00

Added Duet Ethernet and Duex PCB models.

Made green terminals parametric.
Separated pin_headers and green_terminals out from pcb.scad.
This commit is contained in:
Chris Palmer
2019-07-04 12:03:38 +01:00
parent 8014aadd1d
commit 55fd552c8f
17 changed files with 856 additions and 289 deletions

View File

@@ -25,7 +25,7 @@
//! Uses STL files copyright geekammo and licenced with MIT license, see [microview/LICENSE.txt](vitamins/microview/LICENSE.txt).
//
include <../core.scad>
use <pcb.scad> // for pin
include <pin_headers.scad>
panel_clearance = 0.2;
@@ -54,6 +54,6 @@ module microview(cutout = false) { //! Draw microview or generate a panel cutou
for(side = [-1, 1], i = [0 : 7])
translate([side * inch(0.35), (i - 3.5) * inch(0.1)])
pin();
pin(2p54header);
}
}