Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mofosyne/894947e74f669fe7663776b55c6c9ee0 to your computer and use it in GitHub Desktop.

Select an option

Save mofosyne/894947e74f669fe7663776b55c6c9ee0 to your computer and use it in GitHub Desktop.
Remix 10 inch rack model to fit Alhua PoE Switch DH-PFS3010-8ET-96
// This script will remix the size of this model to fit different switches if it differ by few mm
// https://www.printables.com/model/1251280-10-inch-mount-for-sodola-switch/comments
// Below is for 190x30x101mm Alhua PoE Switch DH-PFS3010-8ET-96
width = 190;
height = 30;
depth = 101;
difference()
{
union()
{
translate([0,4,0])
import("sodola-25g-managed-switch-10_-rack-mount.stl");
translate([0,-height/2-1.25,(depth+0.5)/2+0.5])
cube([width+0.5,2,depth+0.5],center=true);
}
translate([0,0,(101+0.5)/2+0.5])
cube([width+0.5,height+1,depth+0.5],center=true);
}
@mofosyne
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment