RAM Mount Arm Adapter for Jelly Max.

This commit is contained in:
2026-08-04 18:27:47 -05:00
parent 703a39dd57
commit a49012c7af
@@ -0,0 +1,18 @@
module arm() {
cube([30, 5.25, 1.5]);
cube([1.5, 5.25, 27.5]);
}
module adapter() {
difference() {
union() {
cube([27, 9.25, 5.5]);
cube([5.5, 9.25, 33]);
translate([0, 0, 24.8]) cube([12, 9.25, 4]);
}
translate([2, 2, 2]) scale([1, 2, 1]) arm();
}
}
rotate([90, 0, 0]) adapter();
translate([0, 2, 0]) mirror([0, 1, 0]) rotate([90, 0, 0]) adapter();