initial commit

add original mount pieces for Powerplant PSU and UMC404HD usb interface
This commit is contained in:
Michael Sippel 2024-12-28 16:30:49 +01:00
commit 9bb151f524
Signed by: senvas
GPG key ID: F96CF119C34B64A6
2 changed files with 155 additions and 0 deletions

80
psu-mount.scad Normal file
View file

@ -0,0 +1,80 @@
thickness=4;
depth=85 + 2*thickness;
width=165 + 2*thickness;
height=50 + thickness;
off=10;
hole_dist=15;
module wall()
{
cube([thickness, depth, height]);
translate([0,0,height])
difference()
{
hull() {
cube([thickness, depth, thickness]);
translate([-off, depth/2-hole_dist, 0])
cylinder(h=thickness, d=5, $fn=64);
translate([-off, depth/2+hole_dist, 0])
cylinder(h=thickness, d=5, $fn=64);
}
translate([-off, depth/2-hole_dist, 0])
cylinder(h=thickness, d=2, $fn=64);
translate([-off, depth/2+hole_dist, 0])
cylinder(h=thickness, d=2, $fn=64);
translate([-off, depth/2-hole_dist, 0])
cylinder(h=2, d=4, $fn=64);
translate([-off, depth/2+hole_dist, 0])
cylinder(h=2, d=4, $fn=64);
}
}
// sides
difference()
{
wall();
translate([0, depth/2, height/2])
cube([10, 65, 40], center=true);
}
translate([width, 0, 0])
mirror([1,0,0])
wall();
// base
cube([width, depth, thickness]);
module wall2()
{
difference()
{
cube([width, thickness, 10]);
translate([37.5+thickness, 6, 4+thickness])
rotate([90,0,0])
cylinder(h=4, d=6, $fn=64);
translate([127.5+thickness, 6, 4+thickness])
rotate([90,0,0])
cylinder(h=4, d=6, $fn=64);
}
}
wall2();
translate([0, depth, 0])
mirror([0,1,0])
wall2();

75
umc404_mount.scad Normal file
View file

@ -0,0 +1,75 @@
depth=107;
height=44;
thickness=5;
cube([10, depth, thickness]);
translate([-2,-thickness, 0])
cube([10+2, thickness, height+thickness]);
translate([-2,depth, 0])
cube([10+2, thickness, height+thickness]);
translate([-2, 0, 0])
cube([2, depth, height+thickness]);
translate([0,0,height])
{
difference()
{
hull() {
translate([-5, 2*depth/3,0])
cylinder(h=thickness, d=10, $fn=64);
translate([-5, 1*depth/3,0])
cylinder(h=thickness, d=10, $fn=64);
translate([-1, 4*depth/5,0])
cylinder(h=thickness, d=2, $fn=64);
translate([-1, 1*depth/5,0])
cylinder(h=thickness, d=2, $fn=64);
}
translate([-6, 2*depth/3, 0])
cylinder(h=thickness, d=2, $fn=64);
translate([-6, 2*depth/3, 0])
cylinder(h=2, d=4, $fn=64);
translate([-6, 1*depth/3, 0])
cylinder(h=thickness, d=2, $fn=64);
translate([-6, 1*depth/3, 0])
cylinder(h=2, d=4, $fn=64);
}
}
// back screw
translate([0,depth+thickness,height])
{
difference()
{
hull() {
translate([5,5,0])
cylinder(h=thickness, d=5, $fn=64);
translate([0.5, 0,0])
cylinder(h=thickness, d=thickness, $fn=64);
translate([10-thickness/2, 0,0])
cylinder(h=thickness, d=thickness, $fn=64);
}
translate([5, 4, 0])
cylinder(h=thickness, d=2, $fn=64);
translate([5, 4, 0])
cylinder(h=2, d=4, $fn=64);
}
}