wide format sbc support and other changes

This commit is contained in:
Edward Kisiel
2025-04-12 21:56:28 -04:00
parent 3ce75a345b
commit c151a9047b
6 changed files with 233 additions and 19 deletions

View File

@@ -28,16 +28,16 @@
*/
module cableholder_spacer() {
module cableholder_spacer(size = [9.4,20,6]) {
size = [9.4,16,6];
// size = [9.4,16,6];
$fn = 90;
translate([0,size[2]/2,-5]) rotate([90,0,0])
difference() {
translate([size[0]/2,size[0]/2,0]) rotate([0,0,90]) slot(size[0],size[1],size[2]);
translate([-1,5,3]) rotate([0,90,0]) cylinder(d=3.2, h=12);
#translate([-1,5,3]) rotate([0,90,0]) cylinder(d=3.2, h=12);
translate([-1,7.5,-1]) cube([2,20,9]);
translate([5,9.5,-1]) rotate([0,0,90]) slot(4.5,11,9);
translate([5,9.5,-1]) rotate([0,0,90]) slot(4.5,13,9);
translate([3,20,-1]) rotate([0,0,45]) cube([2,6,9]);
}
}