We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, maybe a addition to the slicer setup for prusa slicer. Its also needed to set the ramming time to 0 in ramming setting for each filament.
Otherwise the E-15.000 is still in the gcode output and leads in my case to extruder skips.
;WIDTH:0.5 G1 E-15.0000 G1 E10.4965 G1 E2.9990 G1 E1.4995 G4 S0
Described also here:
prusa3d/PrusaSlicer#13175
The text was updated successfully, but these errors were encountered:
Correction, its now needed to set cooling tube length exactly to 0 to remove the E-15.000
WipeTower.cpp prusa slicer
if (m_semm && (m_cooling_tube_retraction != 0 || m_cooling_tube_length != 0)) { float total_retraction_distance = m_cooling_tube_retraction + m_cooling_tube_length/2.f - 15.f; // the 15mm is reserved for the first part after ramming writer.suppress_preview() .retract(15.f, m_filpar[m_current_tool].unloading_speed_start * 60.f) // feedrate 5000mm/min = 83mm/s .retract(0.70f * total_retraction_distance, 1.0f * m_filpar[m_current_tool].unloading_speed * 60.f) .retract(0.20f * total_retraction_distance, 0.5f * m_filpar[m_current_tool].unloading_speed * 60.f) .retract(0.10f * total_retraction_distance, 0.3f * m_filpar[m_current_tool].unloading_speed * 60.f) .resume_preview();
Sorry, something went wrong.
No branches or pull requests
Hi,
maybe a addition to the slicer setup for prusa slicer.
Its also needed to set the ramming time to 0 in ramming setting for each filament.
Otherwise the E-15.000 is still in the gcode output and leads in my case to extruder skips.
;WIDTH:0.5
G1 E-15.0000
G1 E10.4965
G1 E2.9990
G1 E1.4995
G4 S0
Described also here:
prusa3d/PrusaSlicer#13175
The text was updated successfully, but these errors were encountered: