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

    M558: Set MINIMUM Probing Numbers?

    Scheduled Pinned Locked Moved
    General Discussion
    3
    13
    521
    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.
    • droftartsundefined
      droftarts administrators @tom_Nbg
      last edited by

      @tom_Nbg said in M558: Set MINIMUM Probing Numbers?:

      ; Z-Probe
      M307 H3 A-1 C-1 D-1                              ; disable heater3 on PWM channel for BLTouch. Pin-Out 8!!
      M558 P9 H5 R0.5 S0.05 F180 T7200 A4              ; set Z probe type to bltouch and the dive height + speeds
      G31 P25 X-23.5 Y-36.0 Z2.51                      ; set Z probe trigger value, offset x=-36.0, y=-23.5 
      M557 X5:230 Y15:175 P5:5						 ; define mesh grid 
      

      Maybe you're going a bit fast. Try F100 T2000. H5 is fine.

      all the time I got a well leveld bed (with viewer) but the print overall are not consistent to it....

      Do you use G32/bed.g as well, or any other macros for levelling? Make sure you cancel any existing compensation (especially if you load a mesh in config.g) with M561 before running G32/bed.g, then create a new mesh. Post bed.g if you're not sure.

      Also, I note your BLTouch has quite an offset to it, especially in Y. If you're using a printer with vertical smooth rods for X axis and a direct-drive extruder, the weight of the extruder will make the bars bend, and as the BLTouch is out the front, it will move further vertically than the nozzle. You'll probably see a tubular shaped bed.

      Ian

      Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

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

        Here's my BLTouch config for comparison.

        M558 P9 H3 F60 T6000 A10 R0.75 S0.003 B1
        G31 X-43.2 Y31.9 Z2.0 P25
        

        Note the lower probe speed, higher A value, and tighter tolerance for the S value. Also disabled heaters.

        Z-Bot CoreXY Build | Thingiverse Profile

        tom_Nbgundefined 1 Reply Last reply Reply Quote 0
        • tom_Nbgundefined
          tom_Nbg @Phaedrux
          last edited by

          @Phaedrux
          Thank you for your recommondations. But my problem still exists....
          I'll report later - I'm frustrated ... 😕

          1 Reply Last reply Reply Quote 0
          • tom_Nbgundefined
            tom_Nbg
            last edited by

            @Phaedrux

            A short question to B1 Parameter: I got better results now - so it seems to be an interference -
            BUT -
            when probing many points, the bed is cooling down because the re-heating times during movements are too short...(even is the probing speed is slowly in addition). If it is possible to give an additional parameter to wait for bed temperature before the next probing point will start (or set a delta_T-value if deviation from the actual bed temp is more then delta_T it'll wait? Would be a nice feature?

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

              What kind of bed do you have? Curious both to know what might cause the interference and how it's cooling down so fast during probing.

              Having a way to wait for temps could be useful. Perhaps make a request in the firmware wishlist section.

              Z-Bot CoreXY Build | Thingiverse Profile

              1 Reply Last reply Reply Quote 0
              • tom_Nbgundefined
                tom_Nbg
                last edited by

                @Phaedrux
                My printer is a "Prusa-like" style machine (see picture), no enclosure and so it has a "open" bed. If I heat up to 60°C and BLTouch probes so slowly, the bed is turned of and with only 5x5 mesh points the last point is measured at about 45°C...

                But my biggest problem is allready unsolved - I'll make a seperate post for it within the next 30 min...

                IMG_1213.jpg

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

                  @tom_Nbg said in M558: Set MINIMUM Probing Numbers?:

                  BLTouch probes so slowly,

                  Ah I see, so you're print head is normally at the Zmax position and the slow probe speed is taking a long time to reach the bed and the bed has cooled before it arrives?

                  Here's a trick that will help with that. You can modify the homeall/homez to have a faster probe speed first, followed by a slower probe speed. That way it will move quickly down to the bed, trigger once, and then probe again more slowly for better accuracy. For a G29 run it won't matter as much because it's already close to the bed.

                  Where you would have the G30 to probe the bed...

                  M558 A1 F600			; Set single probing at faster feed rate
                  G30 				; Do a single probe to home our Z axis
                  M558 A10 F100			; Set multi probing at slower feed rate
                  G30				; Probe again to get a more accurate position
                  

                  Z-Bot CoreXY Build | Thingiverse Profile

                  tom_Nbgundefined 1 Reply Last reply Reply Quote 0
                  • tom_Nbgundefined
                    tom_Nbg
                    last edited by

                    No - not from the head. I have two spacer in about 20mm hight I put to the z-motors and screw it down to there and start probing then. It starts probing after homing with 60° as it should and then slowly loose temp over the points.

                    1 Reply Last reply Reply Quote 0
                    • tom_Nbgundefined
                      tom_Nbg @Phaedrux
                      last edited by

                      @Phaedrux said in M558: Set MINIMUM Probing Numbers?:

                      @tom_Nbg said in M558: Set MINIMUM Probing Numbers?:

                      BLTouch probes so slowly,

                      Ah I see, so you're print head is normally at the Zmax position and the slow probe speed is taking a long time to reach the bed and the bed has cooled before it arrives?

                      Here's a trick that will help with that. You can modify the homeall/homez to have a faster probe speed first, followed by a slower probe speed. That way it will move quickly down to the bed, trigger once, and then probe again more slowly for better accuracy. For a G29 run it won't matter as much because it's already close to the bed.

                      Where you would have the G30 to probe the bed...

                      M558 A1 F600			; Set single probing at faster feed rate
                      G30 				; Do a single probe to home our Z axis
                      M558 A10 F100			; Set multi probing at slower feed rate
                      G30				; Probe again to get a more accurate position
                      

                      G30 is in homez:

                      G90                   ; absolute positioning
                      G1 X151 Y141 F3600    ; Move probe to middle of bed - first probing point, regarding Z-probe offsets
                      G30                   ; home Z by probing the bed
                      
                      1 Reply Last reply Reply Quote 0
                      • Phaedruxundefined
                        Phaedrux Moderator
                        last edited by

                        Ok, so you're manually mechanically leveling the X axis first and then running G29, and it's during G29 that it's cooling?

                        I suppose it's the large DC heat bed that's producing a magnetic field to interfere with the BLTouch.

                        You could increase the R value in M558 to add a bit of a pause between probing moves. That may allow the heatbed to maintain temp a bit better, but would add a few seconds to each probe move.

                        Z-Bot CoreXY Build | Thingiverse Profile

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