Jump to content

Adding option to switch to relative extrusion for Pause at Height


valemaio2

Recommended Posts

Posted · Adding option to switch to relative extrusion for Pause at Height

Hi, if this is not the correct place to suggest a change in Ultimaker Cura, please just point me in the right direction.

 

I was playing with the Pause at Height feature in Cura and I noticed that the gcode inserted switched the print to extrusion absolute mode. My printer uses relative mode, so it took me a while to figure out why it wasn't working. I can manually modify the gcode myself, changing all M82 command to M83, but it would be nice to have the option of switching between relative and absolute in the plugin itself.

  • Link to post
    Share on other sites

    Posted · Adding option to switch to relative extrusion for Pause at Height

    In the Cura folder ...C:\Program Files\Ultimaker Cura 4.X\plugins\PostProcessingPlugin\scripts\PauseAtHeight.py

    The PauseAtHeight.py file can be opened in a text editor.  The following line is near the end:

    prepend_gcode += self.putValue(M = 82) + " ; switch back to absolute E values\n"

    Change the 2 to 3, save the file, restart Cura.  I'm not a Python guy but you should be good to go.

    Cura 4.7 PauseAtHeight allows you to add a gcode command "Gcode after the pause" but it goes in as the first line after the pause which doesn't work since the M82 is a few lines later.

    • Thanks 1
    Link to post
    Share on other sites

    • 7 months later...
    Posted (edited) · Adding option to switch to relative extrusion for Pause at Height

    For people facing the same problem but wanting the "Pause at height" script to work with both absolute and relative extrusion (depending on your "Relative Extrusion" setting under "Special Modes"):

     

    Replace the following line in PauseAtHeight.py file

     

    prepend_gcode += self.putValue(M = 82) + " ; switch back to absolute E values\n"

     

    with the following lines

     

    extrusion_mode_string = "absolute"
    extrusion_mode_numeric = 82
    
    extruders = list(Application.getInstance().getGlobalContainerStack().extruders.values())
    relative_extrusion = extruders[0].getProperty("relative_extrusion", "value")
    if relative_extrusion:
      extrusion_mode_string = "relative"
      extrusion_mode_numeric = 83
    
    prepend_gcode += self.putValue(M = extrusion_mode_numeric) + " ; switch back to " + extrusion_mode_string + " E values\n"

     

    Hope this helps.

    Edited by edankleef
    • Like 1
    Link to post
    Share on other sites

    Posted · Adding option to switch to relative extrusion for Pause at Height

    Maybe you should post that over on Github.  It looks to be a worthwhile addition.

     

    Is there an advantage to using Volumetric vs Linear?  It seems like it's just an internal math thing.

    • Like 1
    Link to post
    Share on other sites

    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now
    • Our picks

      • UltiMaker Cura 5.7 stable released
        Cura 5.7 is here and it brings a handy new workflow improvement when using Thingiverse and Cura together, as well as additional capabilities for Method series printers, and a powerful way of sharing print settings using new printer-agnostic project files! Read on to find out about all of these improvements and more. 
         
          • Like
        • 18 replies
      • S-Line Firmware 8.3.0 was released Nov. 20th on the "Latest" firmware branch.
        (Sorry, was out of office when this released)

        This update is for...
        All UltiMaker S series  
        New features
         
        Temperature status. During print preparation, the temperatures of the print cores and build plate will be shown on the display. This gives a better indication of the progress and remaining wait time. Save log files in paused state. It is now possible to save the printer's log files to USB if the currently active print job is paused. Previously, the Dump logs to USB option was only enabled if the printer was in idle state. Confirm print removal via Digital Factory. If the printer is connected to the Digital Factory, it is now possible to confirm the removal of a previous print job via the Digital Factory interface. This is useful in situations where the build plate is clear, but the operator forgot to select Confirm removal on the printer’s display. Visit this page for more information about this feature.
          • Like
        • 0 replies
    ×
    ×
    • Create New...