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

    Need to lower the nozzle

    Scheduled Pinned Locked Moved
    General Discussion
    6
    72
    4.1k
    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.
    • jens55undefined
      jens55
      last edited by

      Yes. my apologies and I edited my post to credit everybody.
      I have lost track of who said what and with two threads going, I didn't want to look through everything, compare time stamps and figure out what the order of credits should be.

      Kolbiundefined 1 Reply Last reply Reply Quote 0
      • Kolbiundefined
        Kolbi @jens55
        last edited by Kolbi

        @jens55 Yeah, its a bit confusing 🙂 but fun.
        But I do think my last revision is stable and safe.

        1 Reply Last reply Reply Quote 1
        • jens55undefined
          jens55
          last edited by

          I just noticed that you put in a test for an active print job - good show!
          If the issue that I am seeing is in the bowels of the code, it will sooner or later screw up something so although your code 'fixes' the symptom for this macro, I rather have the problem looked at and fixed (if possible).

          Kolbiundefined 2 Replies Last reply Reply Quote 1
          • Kolbiundefined
            Kolbi @jens55
            last edited by

            @jens55 Haha, no worries.

            1 Reply Last reply Reply Quote 0
            • fcwiltundefined
              fcwilt @jens55
              last edited by

              @jens55 said in Need to lower the nozzle:

              @fcwilt / Kolbi and anybody else that chimed in - I now have recreated the issue that happens when babysteps are saved and the babystep value is zeroed.
              The new offset ends up in config-overwrite.g but unless config.g is run it is never set and resetting the babysteps to zero brings the print nozzle to the same position that it started out as before the attempt was made to correct with babystepping.

              I will wait and see what DC42 has to say re the invalid G31 Z values before worrying about other things.

              Can you use M98 to invoke config-overwrite.g in your macro?

              Frederick

              Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

              Kolbiundefined 1 Reply Last reply Reply Quote 0
              • jens55undefined
                jens55
                last edited by jens55

                Oh oh ..... danger Will Robinson, danger, danger ....

                The scenario ..... 20 hour print job and you are at 19:59. you are admiring your perfect print job that took 3 tries to get right. You realize you forgot to save the offset and hit the magic button.
                The printer comes to a shuddering halt as it resets itself to activate the new values in config-overwrite.g.

                Visions of the users head slowly turning red, smoke pouring out of every orifice until .... his head explodes and you are left with a bloody and ragged neck on top of a lifeless body.

                Printer merrily finishes it's reset and happily notifies the no longer exiting user that it is connected to the network and ready to print!

                Hmmmm .... maybe I got carried away there but I can vividly (too vividly) see it in my mind!

                fcwiltundefined 1 Reply Last reply Reply Quote 0
                • fcwiltundefined
                  fcwilt @jens55
                  last edited by

                  @jens55

                  Why did the printer reset?

                  Frederick

                  Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

                  1 Reply Last reply Reply Quote 0
                  • jens55undefined
                    jens55
                    last edited by

                    You said you wanted the config-overwrite.g values to go live (execute) ... as far as I know that only happens when config.g is run which I am thinking is a printer reset.
                    Don't know .... but it invoked all kinds of horror scenarios in my mind.
                    Maybe I have been watching too many horror movies ?
                    Oh .... the previous scenario happened in a darkened basement full of spider webs 🙂

                    1 Reply Last reply Reply Quote 0
                    • jens55undefined
                      jens55
                      last edited by

                      Ok ok .... just had an actual look at the file and maybe the horror show was a bit over the top and your idea may just work .... but it's not giving us any entertainment value 🙂

                      1 Reply Last reply Reply Quote 0
                      • Kolbiundefined
                        Kolbi @fcwilt
                        last edited by Kolbi

                        @fcwilt said in Need to lower the nozzle:

                        Can you use M98 to invoke config-overwrite.g in your macro?

                        I don't think calling the config-overwrite.g would accomplish anything that this macro doesn't already do. Reason being is that the macro executes "G31 Z{sensors.probes[0].triggerHeight - move.axes[2].babystep} ; set G31 Z offset to corrected", and then executes "M500 P10:31" - so it would be the same.

                        Thats why I believe the print should be carried out to completion, then execute the save-z macro. This then could commit the z-probe change now via G31, save it to config-overwrite via M500 P10:31, then get the babystep cleared, and finally rehome to reflect the new perfected height.

                        Of course.... I could be wrong 😂 😂 😂

                        But I do admit, I don't use the config-overwrite.g / I don't put M501 in my config.g - I just copy what I want out of the overwrite, change that data point in the config.g, erase the overwrite, and M999. With that, I save the M31 outcome to the currently employed filament's config.g and not the main 0:/sys/config.g.

                        1 Reply Last reply Reply Quote 1
                        • Kolbiundefined
                          Kolbi
                          last edited by Kolbi

                          @all, This is what I consider to be a solid, working, and safe solution. Let me know if you find any issues with it.

                          All the best,
                          Kolbi

                          ; 0:/macros/Save-Z-Baby
                          ; This macro subtracts the current babystep offset from the current Z trigger height and informs the user what offset
                          ; value to change the G31 Z metric to in the 0:/sys/config.g. Additionally, the macro issues a G31 command with the new
                          ; calculated z-offset, clears the current babystepping, and then rehomes the machine to make the new z-offset effective. 
                          ; If this is for a specific filament type, recommend placing this yielded information in the filament's config.g - not
                          ; the 0:/sys/config.g.
                          	 
                           
                          if state.status != "processing"                                     ; Printer is not currently printing!
                           
                             if move.axes[2].babystep !=0                                     ; If no babysteps are currently adjusted - exit routine
                                echo {"Previous Z probe trigger height: " ^ sensors.probes[0].triggerHeight ^ ", New: " ^ sensors.probes[0].triggerHeight - move.axes[2].babystep}
                                echo {"Edit the G31 command in your config.g with a new Z offset of: " ^ sensors.probes[0].triggerHeight - move.axes[2].babystep}
                                M291 P{"Set probe offset to " ^ sensors.probes[0].triggerHeight - move.axes[2].babystep ^ ", clear babysteps, and REHOME ALL?"} R"!WARNING! Do not proceed if printing!" S3
                                M400                                                           ; finish moves / clear buffer
                                G31 Z{sensors.probes[0].triggerHeight - move.axes[2].babystep} ; set G31 Z offset to corrected
                                M500 P10:31                                                    ; save settings to config-overide.g - G31 P31 saves trigger height
                                M290 R0 S0                                                     ; set babystep to 0mm absolute
                                G28                                                            ; home all
                                M291 P"Ensure M501 exists in 0:/sys/config, or manually edit the G31 Z offset, to make this change permanent." R"Note on making change permanent." S3 
                             else
                                echo "Babystepping is not currently active, nothing to do."
                           
                          else
                             M291 S2 P"This would be detrimental to the ongoing print. Please run this macro when the print is finished, and the bed is clear & ready for the homing sequence to be conducted." R"WARNING"
                          
                          1 Reply Last reply Reply Quote 2
                          • Kolbiundefined
                            Kolbi @jens55
                            last edited by

                            @jens55 said in Need to lower the nozzle:

                            have the problem looked at and fixed

                            👍 Good job on the persistence

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