diff --git a/component models/AS2E-2M-10-Z.scad b/component models/AS2E-2M-10-Z.scad new file mode 100644 index 0000000..b6c2c0e --- /dev/null +++ b/component models/AS2E-2M-10-Z.scad @@ -0,0 +1,32 @@ +module Body () { + color("Silver") + difference () { + cube([9.5, 5, 8], center=true); + #translate([0, 0, 4-0.5]) + cube([5.4, 2.2, 1], center=true); + } +} + +module Pin() { + translate([0,0,-4-3.3/2]) + color ("Gold") + cube([0.6, 0.3, 3.3], center=true); +} + + + Body(); +// Row 1 + translate([0, -1.27, 0]) { + Pin(); + translate([2.54, 0, 0]) + Pin(); + translate([-2.54, 0, 0]) + Pin(); + } + translate([0, 1.27, 0]) { + Pin(); + translate([2.54, 0, 0]) + Pin(); + translate([-2.54, 0, 0]) + Pin(); + }