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

    Mesh grid compensation - Setup on Initial Gcode

    Scheduled Pinned Locked Moved Solved
    Tuning and tweaking
    5
    51
    2.5k
    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.
    • FelixHundefined
      FelixH @Phaedrux
      last edited by FelixH

      @Phaedrux said in Mesh grid compensation - Setup on Initial Gcode:

      @FelixH alright. The gist of my alternate approach if this doesn't prove fruitful was to test using m558 P0 to use manual probing as a control experiment.

      well, just tried that and it worked without errors. As it should.

      Not only that, but I am also printing the model it gave everything away. At least I have confirmation that the problem was not reading the bed map.

      1 Reply Last reply Reply Quote 0
      • Phaedruxundefined
        Phaedrux Moderator
        last edited by

        So the probe is working for the height map creation with g29 but not for just setting the z0 with g30?

        Z-Bot CoreXY Build | Thingiverse Profile

        1 Reply Last reply Reply Quote 0
        • FelixHundefined
          FelixH
          last edited by

          It appears so. Although when I send G30 followed by a G29 S1 from the console, no error or warning appears on the screen

          Phaedruxundefined 1 Reply Last reply Reply Quote 0
          • Phaedruxundefined
            Phaedrux Moderator @FelixH
            last edited by

            @FelixH that's good. That's as it should be. Does that include g30 with the probe or manual?

            Z-Bot CoreXY Build | Thingiverse Profile

            1 Reply Last reply Reply Quote 0
            • FelixHundefined
              FelixH
              last edited by

              with the probe. If I do it outside of a print, it's not a problem. If I do it within the initial code of the print, then I get the warnings, i.e. that the probe was already triggered at the beginning of the probing. Yesterday I recimped the terminals of the probe. Everything is sound

              infiniteloopundefined 1 Reply Last reply Reply Quote 0
              • infiniteloopundefined
                infiniteloop @FelixH
                last edited by

                @FelixH said in Mesh grid compensation - Setup on Initial Gcode:

                If I do it within the initial code of the print, then I get the warnings…

                Looks to me as if the slicer commands the head to Z=0 before your G30 is executed in the initial section. As a test, you might insert a G0 Z4.0 (or whatever height is appropriate for your probe to keep free from the bed) just above the G30.

                Phaedruxundefined 1 Reply Last reply Reply Quote 1
                • Phaedruxundefined
                  Phaedrux Moderator @infiniteloop
                  last edited by

                  @infiniteloop said in Mesh grid compensation - Setup on Initial Gcode:

                  @FelixH said in Mesh grid compensation - Setup on Initial Gcode:

                  If I do it within the initial code of the print, then I get the warnings…

                  Looks to me as if the slicer commands the head to Z=0 before your G30 is executed in the initial section. As a test, you might insert a G0 Z4.0 (or whatever height is appropriate for your probe to keep free from the bed) just above the G30.

                  It would appear he's got it at 15mm above the bed. and the probe offset is 12mm.

                  G1 Z15.  ; go close to to the surface
                  G30        ; Z=0 datum thing
                  G1 Z75    ; go up a bit
                  

                  But maybe it should be higher still incase the homed height is off? 25mm maybe?

                  Z-Bot CoreXY Build | Thingiverse Profile

                  infiniteloopundefined FelixHundefined 2 Replies Last reply Reply Quote 0
                  • infiniteloopundefined
                    infiniteloop @Phaedrux
                    last edited by

                    @Phaedrux said in Mesh grid compensation - Setup on Initial Gcode:

                    It would appear he's got it at 15mm above the bed. and the probe offset is 12mm.

                    That’s absolutely fine, but: I had a similar problem with Cura when trying to set the extruder to relative movements - Cura tends to put some own lyrics in front of the user-defined intro, depending on settings and prefs. That’s why I propose a quick test - else, we should have a look at the first lines of Gcode from the slicer.

                    1 Reply Last reply Reply Quote 1
                    • FelixHundefined
                      FelixH @Phaedrux
                      last edited by

                      @Phaedrux said in Mesh grid compensation - Setup on Initial Gcode:

                      It would appear he's got it at 15mm above the bed. and the probe offset is 12mm.

                      G1 Z15.  ; go close to to the surface
                      G30        ; Z=0 datum thing
                      G1 Z75    ; go up a bit
                      

                      But maybe it should be higher still incase the homed height is off? 25mm maybe?

                      well, damn it!

                      ladies and gentlemen, we can close this thread as the error has been found.

                      The G1 Z15 command was implemented in order to control the speed while diving down. Apparently it didn't occur to me that the probe offset is 16.10mm. So the probe effectively was triggered before the G30 command was event queued. I just did a test run with a G1 Z25 instead and, voilà... it worked... I swear I never noticed the probe touching before the G30 command...

                      Thank you all for your brainstorming and patience!

                      1 Reply Last reply Reply Quote 0
                      • Phaedruxundefined
                        Phaedrux Moderator
                        last edited by

                        @infiniteloop 👍

                        Glad you got it sorted out finally.

                        Z-Bot CoreXY Build | Thingiverse Profile

                        infiniteloopundefined 1 Reply Last reply Reply Quote 0
                        • infiniteloopundefined
                          infiniteloop @Phaedrux
                          last edited by

                          @Phaedrux said in Mesh grid compensation - Setup on Initial Gcode:

                          Glad you got it sorted out finally.

                          Just jumped in when you had narrowed down the cause to a single question: if G30 works stand-alone, what is different when it resides in a .gcode file? So the honours belong to you, Sherlock 🤓

                          FelixHundefined 1 Reply Last reply Reply Quote 0
                          • FelixHundefined
                            FelixH @infiniteloop
                            last edited by

                            @infiniteloop said in Mesh grid compensation - Setup on Initial Gcode:

                            @Phaedrux said in Mesh grid compensation - Setup on Initial Gcode:

                            Glad you got it sorted out finally.

                            Just jumped in when you had narrowed down the cause to a single question: if G30 works stand-alone, what is different when it resides in a .gcode file? So the honours belong to you, Sherlock 🤓

                            I coudn't agree more. It was not my doing at all...

                            infiniteloopundefined 1 Reply Last reply Reply Quote 0
                            • infiniteloopundefined
                              infiniteloop @FelixH
                              last edited by

                              @FelixH said in Mesh grid compensation - Setup on Initial Gcode:

                              It was not my doing at all...

                              Sorry, but I disagree. Looking at those (rare) dudes who boldly claim to never ever having made anything wrong, thus always suspecting others to be the sole cause of their mishap, I have to appreciate that you instead tried to understand what’s going wrong, throughout the whole thread. Finally, it was you who put the loose ends together and spotted the gcode fragment in question. I think @Phaedrux won’t object if I state that it is fun to work with guys like you.

                              1 Reply Last reply Reply Quote 0
                              • Phaedruxundefined
                                Phaedrux Moderator
                                last edited by

                                Yes it's always a pleasure working together towards a common goal with a positive attitude.

                                Z-Bot CoreXY Build | Thingiverse Profile

                                1 Reply Last reply Reply Quote 1
                                • FelixHundefined
                                  FelixH
                                  last edited by

                                  I hope this thread is useful to someone else...

                                  Thanks again guys!

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