Build out more frame supports

This commit is contained in:
2023-06-17 12:13:58 +02:00
parent 20d361b4b5
commit e4648ecb6f

View File

@@ -3,7 +3,7 @@ $fn=16*2;
thinkness=1.6;
width=208.5;
depth=70.5;
height=10;
height=8;
// outer display frame
difference(){
@@ -25,15 +25,36 @@ translate([thinkness, thinkness, 1.5]){
}
// mount supports
translate([30, 0, 10])
translate([31+thinkness, 0, 10])
mount_support();
translate([145+thinkness, 0, 12])
mount_support();
// usb floor support
translate([0, (depth+(thinkness*2))/2-5, height])
cube([32.6, 10, thinkness]);
translate([31, (depth+(thinkness*2))/2-5, height])
cube([thinkness, 10, 3.6]);
module mount_support(){
hole=6;
offset=5.6+thinkness;
width=10;
translate([0, 0, -4])
cube([10, thinkness, 4]);
translate([0, depth+thinkness, -4])
cube([10, thinkness, 4]);
difference(){
cube([10, depth+(thinkness*2), thinkness]);
translate([5, 5, 0])
cylinder(h=2, d=6);
translate([5, depth+(thinkness*2)-5, 0])
cylinder(h=2, d=6);
cube([width, depth+(thinkness*2), thinkness]);
translate([width/2, offset, 0])
cylinder(h=thinkness, d=hole);
translate([width/2, depth+(thinkness*2)-offset, 0])
cylinder(h=thinkness, d=hole);
}
}