mirror of
https://github.com/nophead/Mendel90.git
synced 2025-01-16 20:38:15 +01:00
ad21323ec6
Tweaks to the huxley extruder. Now shows hot end filament diameter on the BOM. Moved huxley spool holder back to give more room for lighting. Updated README.md. Added huxley to command line usage messages.
34 lines
729 B
OpenSCAD
34 lines
729 B
OpenSCAD
//
|
|
// Mendel90
|
|
//
|
|
// GNU GPL v2
|
|
// nop.head@gmail.com
|
|
// hydraraptor.blogspot.com
|
|
//
|
|
// Virtual hot end
|
|
//
|
|
include <conf/config.scad>
|
|
use <vitamins/m90_hot_end.scad>
|
|
use <vitamins/stoffel_hot_end.scad>
|
|
use <vitamins/jhead_hot_end.scad>
|
|
use <vitamins/e3d_hot_end.scad>
|
|
|
|
module hot_end_assembly() {
|
|
filament = extruder_filament(extruder);
|
|
assembly("hot_end_assembly");
|
|
|
|
if(hot_end_style(hot_end) == m90)
|
|
m90_hot_end(hot_end);
|
|
|
|
if(hot_end_style(hot_end) == Stoffel)
|
|
stoffel_hot_end(hot_end);
|
|
|
|
if(hot_end_style(hot_end) == jhead)
|
|
jhead_hot_end(hot_end, filament, exploded = 0);
|
|
|
|
if(hot_end_style(hot_end) == e3d)
|
|
e3d_hot_end(hot_end, filament);
|
|
|
|
end("hot_end_assembly");
|
|
}
|