1. Got a question or need help troubleshooting? Post to the troubleshooting forum or Search the forums!

Auto filament retract

Discussion in 'General Questions' started by David Lockwood, May 14, 2016.

  1. David Lockwood

    Joined:
    Mar 24, 2016
    Messages:
    38
    Likes Received:
    13
    I'm looking for a command to append to the FFF profile in Simplify3D to retract the filament at the conclusion of a print. I'm getting really tired of these clogged hot ends and thought that might be a solution when I miss the fact that the print has ended and the hot end is cooling. Is there a Gcode command for this?
     
  2. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,914
    Likes Received:
    7,338
    Edit the ending GCode script:

    Add a G92 E0 to reset the extruder axis to zero, then a G1 E-2. So just add the following two lines to the end.gcode script:

    G92 E0
    G1 E-2

    Change the '-2' to -however_many_mm_you_want_to_retract
     
  3. David Lockwood

    Joined:
    Mar 24, 2016
    Messages:
    38
    Likes Received:
    13
    Thank you, yet again, Mark, for your assistance. I do wish there were some reference I could go to or get to fill in the obviously enormous gaps in my knowledge.
     
    mark tomlinson likes this.
  4. mark tomlinson

    mark tomlinson ༼ つ ◕_ ◕ ༽つ
    Staff Member

    Joined:
    Feb 21, 2013
    Messages:
    23,914
    Likes Received:
    7,338
    Practice will get you there. Good luck.
     

Share This Page