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

Webcontrol Z offset goes on zero after new start

Scheduled Pinned Locked Moved
Duet Web Control
3
6
165
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.
  • undefined
    Buccaneer
    last edited by 26 Aug 2024, 20:27

    I changed the nozzle and changed Z offset with babysteps. When I start webcontrol new, the value is on zero. How can I save this value?

    undefined 1 Reply Last reply 26 Aug 2024, 20:38 Reply Quote 0
    • undefined
      infiniteloop @Buccaneer
      last edited by 26 Aug 2024, 20:38

      @Buccaneer

      I changed the nozzle and changed Z offset with babysteps. When I start webcontrol new, the value is on zero. How can I save this value?

      You shouldn’t. Baby steps are a temporary measure, they are used for fine adjustments on the fly. The Z height is determined in your homez,g- and homeall.g macros and depends on whether you use merely an endstop or a probe. You have to either adjust the Z value in your G92 command accordingly, or, if you use a probe, you want to correct the Z probe offset (the Z parameter in G31).

      1 Reply Last reply Reply Quote 0
      • undefined
        Buccaneer
        last edited by 26 Aug 2024, 20:51

        This is my homez

        ; BLTouch
        M280 P0 S160 ; Precautionary alarm release
        M280 P0 S90 ; Ensure the pin is raised

        G91 ; Relative positioning
        G1 H2 Z5 F6000 ; Lift Z relative to current position

        G90 ; Absolute positioning
        ;G1 X150 Y150 F10000 ; Go to the center of the bed (300x300)
        G1 X200 Y200 F10000 ; Go to the center of the bed (400x400)
        ;G1 X250 Y250 F10000 ; Go to the center of the bed (500x500)
        G30 ; Home Z by probing the bed

        ; Uncomment the following lines to lift Z after probing
        G91 ; Relative positioning
        G1 Z5 F100 ; Lift Z relative to current position
        G90 ; Absolute positioning

        1 Reply Last reply Reply Quote 0
        • undefined
          Buccaneer
          last edited by 26 Aug 2024, 20:54

          homeall

          M201 X500.00 Y500.00 ; Reduce acceleration for homing moves

          ; BLTouch
          M280 P0 S160 ; Precautionary alarm release
          M280 P0 S90 ; Ensure the pin is raised

          G91 ; Relative positioning
          G1 H2 Z5 F6000 ; Lift Z relative to current position
          G1 H1 X-625 Y605 F3600 ; Move quickly to X and Y axis endstops and stop there (first pass)
          G1 H1 X-625 F1800 ; Move quickly to X and Y axis endstops and stop there (first pass)
          G1 H1 Y605 F1800 ; Move quickly to X and Y axis endstops and stop there (first pass)

          G1 H2 X1 Y-1 F600 ; Go back a few mm

          G1 H1 X-625 Y605 F360 ; Move slowly to X and Y axis endstops once more (second pass)
          G1 H1 X-625 F360 ; Move slowly to X and Y axis endstops once more (second pass)
          G1 H1 Y605 F360 ; Move slowly to X and Y axis endstops once more (second pass)

          M201 X8000 Y8000 ; Return to full acceleration

          G90 ; Absolute positioning
          ;G1 X150 Y150 F10000 ; Go to the center of the bed (300x300)
          G1 X200 Y200 F14000 ; Go to the center of the bed (400x400)
          ;G1 X250 Y250 F10000 ; Go to the center of the bed (500x500)
          G30 ; Home Z by probing the bed

          G91 ; Relative positioning
          G1 Z5 F100 ; Lift Z relative to current position
          G90 ; Absolute positioning

          1 Reply Last reply Reply Quote 0
          • undefined
            Phaedrux Moderator
            last edited by 26 Aug 2024, 21:01

            You should follow this guide for finding the correct Z offset for your probe, then the need for babystepping should be minimal. If you find you still need to use babystepping, you can take the amount you're having to use and modify the G31 Z offset in config.g accordingly.

            https://docs.duet3d.com/en/User_manual/Connecting_hardware/Z_probe_testing

            Z-Bot CoreXY Build | Thingiverse Profile

            1 Reply Last reply Reply Quote 0
            • undefined
              Buccaneer
              last edited by 26 Aug 2024, 21:30

              Thank you’ll for your help. 👍👍👍

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