mirror of
https://github.com/nophead/Mendel90.git
synced 2025-01-16 20:38:15 +01:00
9345a5b85a
Filled some gaps in the X ends to make them faster to print. D motor bracket lid now one piece again, as PCB now clears it. Calibration object now includes horizontal nut traps. Add c14n_stl.py to canonicalise the STL files. Corrected PLA sample diameter. Removed feed tube connector, works fine without it. Removed tube jig as not required in the kit. Manual updated with new part renders.
42 lines
1.0 KiB
OpenSCAD
42 lines
1.0 KiB
OpenSCAD
//
|
|
// Mendel90
|
|
//
|
|
// GNU GPL v2
|
|
// nop.head@gmail.com
|
|
// hydraraptor.blogspot.com
|
|
//
|
|
// A test object for calibration
|
|
//
|
|
include <conf/config.scad>
|
|
|
|
module cal_stl() {
|
|
difference() {
|
|
union() {
|
|
cube([10,40,5]);
|
|
cube([40,10,6]);
|
|
cube([25,25,10]);
|
|
translate([10, 10])
|
|
cylinder(r = 10, h = 15);
|
|
}
|
|
translate([10,10,15])
|
|
nut_trap(Z_screw_dia / 2, Z_nut_radius, Z_nut_depth);
|
|
|
|
translate([5,30,5])
|
|
rotate([0,0,90])
|
|
nut_trap(M3_clearance_radius, M3_nut_radius, M3_nut_trap_depth);
|
|
|
|
translate([0, 18, 5])
|
|
rotate([90,0, 90])
|
|
nut_trap(M3_clearance_radius, M3_nut_radius, M3_nut_trap_depth, true);
|
|
|
|
translate([30,5,6])
|
|
nut_trap(M4_clearance_radius, M4_nut_radius, M4_nut_trap_depth);
|
|
|
|
translate([18, 0, 5])
|
|
rotate([90, 0, 0])
|
|
nut_trap(M4_clearance_radius, M4_nut_radius, M4_nut_trap_depth, true);
|
|
}
|
|
}
|
|
|
|
cal_stl();
|