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

    New edge firmware 1.17dev8 (replaces 1.17dev7)

    Scheduled Pinned Locked Moved
    Firmware wishlist
    7
    28
    5.0k
    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.
    • dc42undefined
      dc42 administrators
      last edited by

      With your original M557 command, you should get an error message saying that there are too many probe points - except if the M557 command is in config.g then you won't see the message.

      Duet WiFi hardware designer and firmware engineer
      Please do not ask me for Duet support via PM or email, use the forum
      http://www.escher3d.com, https://miscsolutions.wordpress.com

      1 Reply Last reply Reply Quote 0
      • Adamfilipundefined
        Adamfilip
        last edited by

        Ok.. What is the max limit of points?

        1 Reply Last reply Reply Quote 0
        • Firebug24kundefined
          Firebug24k
          last edited by

          DC42, on my delta I don't use any XY offset for your IR probe when running G30 autocalibration and it works fine. When I run G29 grid levelling after, should I have entered an XY offset via G31 first or not? My probe is offset about -40mm in the Y direction.

          1 Reply Last reply Reply Quote 0
          • Adamfilipundefined
            Adamfilip
            last edited by

            Grid leveling is working incredibly well. Never had such a good first layer over my entire bed.

            Thank you DC42

            1 Reply Last reply Reply Quote 0
            • dc42undefined
              dc42 administrators
              last edited by

              I'm glad it's working well for you!

              The maximum number of points is currently 121 on the wired Duet and 441 on the Duet WiFi. However, the underlying grid is rectangular so when using a circular probing area the actual max number of points is about pi/4 times these values.

              You should configure the probe offset. During auto calibration the probe offset is ignored.

              Duet WiFi hardware designer and firmware engineer
              Please do not ask me for Duet support via PM or email, use the forum
              http://www.escher3d.com, https://miscsolutions.wordpress.com

              1 Reply Last reply Reply Quote 0
              • 32034undefined
                32034
                last edited by

                @dc42:

                I'm glad it's working well for you!

                The maximum number of points is currently 121 on the wired Duet and 441 on the Duet WiFi. However, the underlying grid is rectangular so when using a circular probing area the actual max number of points is about pi/4 times these values.

                You should configure the probe offset. During auto calibration the probe offset is ignored.

                You mean that G29 should have the same X Y Z offsets as G31 in config.g?

                If Z probe section in config.g looks like this,
                [c]; Z probe section
                M558 P1 X0 Y0 Z1 H3 F100 T5000 ; Smart IR Z probe, used for homing Z axis, dive height 3mm, probe speed 100mm/min, travel speed 5000mm/min
                G31 P500 X-60.0 Y0.0 Z1.30 ;Set the probe height and threshold
                [/c]

                then bed.g should look like this for Auto bed compensation?
                [c]; bed.g
                ; M561 ; clear any bed transform, otherwise homing may be at the wrong height
                G28 ; home the printer

                M557 X10:275 Y15:190 S25 ; define a grid covering the XY area indicated with 25mm grid spacing
                G29 X-60.0 Y0 Z1.30 ;probe levelling grid with prob offsets from config.g
                [/c]

                Edited. Removed .1 from G29

                1 Reply Last reply Reply Quote 0
                • dc42undefined
                  dc42 administrators
                  last edited by

                  No, I mean set up the XYZ offsets in your G31 command, and G29 will use them.

                  Duet WiFi hardware designer and firmware engineer
                  Please do not ask me for Duet support via PM or email, use the forum
                  http://www.escher3d.com, https://miscsolutions.wordpress.com

                  1 Reply Last reply Reply Quote 0
                  • Adamfilipundefined
                    Adamfilip
                    last edited by

                    is there a way to fade the grid correction after a certain amount of layers. I noticed that its still adjusting Z height even after 50mm of print height.

                    1 Reply Last reply Reply Quote 0
                    • jnofsingerundefined
                      jnofsinger
                      last edited by

                      Hello,

                      I am trying to run the new grid correction and running into an issue. I have this in my config.g
                      G31 X0 Y0 Z19.4 P500

                      and the bed file

                      G30 P0 X0 Y0 Z-99999

                      ; Probe the bed and do 6- or 7-factor auto calibration
                      G30 P0 X-73.6 Y-42.5 Z-99999 ; X tower
                      G30 P1 X0 Y-85 Z-99999 ; between X and Y towers
                      G30 P2 X73.6 Y-42.5 Z-99999 ; Y tower
                      G30 P3 X73.6 Y20 Z-99999 ; between Y and Z towers
                      G30 P4 X0 Y67 Z-99999 ; Z tower
                      G30 P5 X-73.6 Y20 Z-99999 ; between Z and X towers
                      G30 P6 X-36.8 Y-21.25 Z-99999 ; half way to X tower
                      G30 P7 X36.8 Y-21.25 Z-99999 ; half way to Y tower
                      G30 P8 X0 Y42.5 Z-99999 ; half way to Z tower
                      G30 P9 X0 Y0 Z-99999 ; centre, and auto-calibrate 6 factors
                      G30 P10 X0.00 Y40.00 Z-99999 ; Z tower
                      G30 P11 X-34.64 Y20.00 Z-99999 ; between Z-X towers
                      G30 P12 X0 Y0 Z-99999 S6

                      M557 R90 S20
                      G29

                      The auto calibration works fine for my delta. When it runs the G29 command the zprobe doesn't report/trigger properly (it is 19.4mm) above my bed. It pushes my probe out of the way down and gives the message

                      "Zprobe triggered before probing move started" (if the printer is not homed to top)
                      OR
                      "Zprobe was not triggered before probing move" (if the printer is homed before running)

                      I assume the G31 isn't being read for G29? what option do I need to set for the probe to trigger correctly? Sorry if this has been answered for a delta, haven't found it in the threads.

                      Thanks,
                      Jim

                      1 Reply Last reply Reply Quote 0
                      • dc42undefined
                        dc42 administrators
                        last edited by

                        I think that your very large Z probe trigger height has exposed a bug in the G29 probing, which I will fix in today's release.

                        Duet WiFi hardware designer and firmware engineer
                        Please do not ask me for Duet support via PM or email, use the forum
                        http://www.escher3d.com, https://miscsolutions.wordpress.com

                        1 Reply Last reply Reply Quote 0
                        • dc42undefined
                          dc42 administrators
                          last edited by

                          @Adamfilip:

                          is there a way to fade the grid correction after a certain amount of layers. I noticed that its still adjusting Z height even after 50mm of print height.

                          That will be supported in today's release.

                          Duet WiFi hardware designer and firmware engineer
                          Please do not ask me for Duet support via PM or email, use the forum
                          http://www.escher3d.com, https://miscsolutions.wordpress.com

                          1 Reply Last reply Reply Quote 0
                          • dc42undefined
                            dc42 administrators
                            last edited by

                            @dc42:

                            I think that your very large Z probe trigger height has exposed a bug in the G29 probing, which I will fix in today's release.

                            PS - sending M558 H25 prior to G29 should work around the problem.

                            Duet WiFi hardware designer and firmware engineer
                            Please do not ask me for Duet support via PM or email, use the forum
                            http://www.escher3d.com, https://miscsolutions.wordpress.com

                            1 Reply Last reply Reply Quote 0
                            • jnofsingerundefined
                              jnofsinger
                              last edited by

                              Just a quick note, the bug noted for my high Z probe is fixed in RC1 without adding H558. Thanks for the quick response and awesome firmware!

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