Using open scad to produce backplates for electrical enclosures
I needed a backplate for an electrical enclosure. Instead of waiting a few days I decided to 3d print one.
Figure 1: NEMA4X Electrical Enclosure
Tools:
* Micrometer
* Calculator
* OpenScad
* Cura
OpenScad code:
echo(version=version());
difference() {
color("red")
translate([0, -0, 0])
linear_extrude(height = 2)
square([121, 121], center = true);
translate([-60.5,-60.5,0])
linear_extrude(height = 2)
square([30,30], center = true);
translate([60.5,-60.5,0])
linear_extrude(height = 2)
square([30,30], center = true);
translate([60.5,60.5,0])
linear_extrude(height = 2)
square([30,30], center = true);
translate([-60.5,60.5,0])
linear_extrude(height = 2)
square([30,30], center = true);
}
Figure 2: OpenScad
Figure 3: Cura