Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    End Gcod

    Scheduled Pinned Locked Moved
    Duet Web Control
    2
    2
    163
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Magicwoodundefined
      Magicwood
      last edited by

      I am using Cura and then web control to slice with my duet3D 2 printer. Use to be a Crane Quad but converted to a single head bowden tube printer. Problem is everytime I make a model. At the end of the print it completely removes the filament from the printer. Backs it all the way out. Thinking maybe a gcode command in the end gecode of Cura. How can I prvent this retraction when finished. 20mm maybe but all the way out. No way! Here is my end Gcode settings.

      G91 ;Relative positioning
      G1 E-2 F2700 ;Retract a bit
      G1 E-2 Z0.2 F2400 ;Retract and raise Z
      G1 X5 Y5 F3000 ;Wipe out
      G1 Z10 ;Raise Z more
      G90 ;Absolute positioning

      G1 X0 Y{machine_depth} ;Present print
      M106 S0 ;Turn-off fan
      M104 S0 ;Turn-off hotend
      M140 S0 ;Turn-off bed

      M84 X Y E ;Disable all steppers but Z

      Kinda new to this stuff.

      OwenDundefined 1 Reply Last reply Reply Quote 0
      • OwenDundefined
        OwenD @Magicwood
        last edited by

        @magicwood
        G91 puts your XYZ axes in relative mode, but leaves your extruder in absolute mode
        Use M83 to put the extruder in relative mode.
        Or even better, set your slicer to use relative extrusion and ensure you have M83 in your start GCode and make sure the slicer doesn't shove an M82 in there.

        1 Reply Last reply Reply Quote 1
        • First post
          Last post
        Unless otherwise noted, all forum content is licensed under CC-BY-SA