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

    Delta calibration not touching bed at edges

    Scheduled Pinned Locked Moved Solved
    Tuning and tweaking
    2
    4
    183
    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.
    • dmnvkundefined
      dmnvk
      last edited by

      Hello All,

      I finally got my delta to the point of calibration after various issues that were all self-induced. When I try to auto calibrate, it gets tot he point of touching the various spots on the bed by starting at the outside then working its way in but I have an issue with the initial 3 spots not going down far enough to touch. Once it passes those three and proceeds to the final 4 spots (including x0y0 it is able to touch and registers perfectly. Almost like I have a configuration problem with one of the settings so hoping someone has some insight on something I did wrong.

      Here's my config.g file for the delta.

      ; Configuration file for Duet 3 (firmware version 3.3)
      ; executed by the firmware on start-up
      ;
      ; generated by RepRapFirmware Configuration Tool v3.3.10 on Sun May 22 2022 18:48:45 GMT-0500 (CDT)

      ; General preferences
      G90 ; send absolute coordinates...
      M83 ; ...but relative extruder moves
      M550 P"Delta" ; set printer name
      M665 R228.6 L400.1 B203.2 H546.45 ; Set delta radius, diagonal rod length, printable radius and homed height
      M666 X0 Y0 Z0 ; put your endstop adjustments here, or let auto calibration find them

      ; Network
      M551 P"******" ; set password
      M552 P0.0.0.0 S1 ; enable network and acquire dynamic address via DHCP
      M586 P0 S1 ; enable HTTP
      M586 P1 S0 ; disable FTP
      M586 P2 S0 ; disable Telnet

      ; Drives
      M569 P0.0 S0 ; physical drive 0.0 goes forwards
      M569 P0.1 S0 ; physical drive 0.1 goes forwards
      M569 P0.2 S0 ; physical drive 0.2 goes forwards
      M569 P0.3 S0 ; physical drive 0.3 goes forwards
      M584 X0.0 Y0.1 Z0.2 E0.3 ; set drive mapping
      M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
      M92 X80.00 Y80.00 Z80.00 E663.00 ; set steps per mm
      M566 X1200.00 Y1200.00 Z1200.00 E1200.00 ; set maximum instantaneous speed changes (mm/min)
      M203 X18000.00 Y18000.00 Z18000.00 E1200.00 ; set maximum speeds (mm/min)
      M201 X1000.00 Y1000.00 Z1000.00 E1000.00 ; set accelerations (mm/s^2)
      M906 X1000 Y1000 Z1000 E800 I30 ; set motor currents (mA) and motor idle factor in per cent
      M84 S30 ; Set idle timeout

      ; Axis Limits
      M208 Z0 S1 ; set minimum Z

      ; Endstops
      M574 X2 S1 P"!io0.in" ; configure switch-type (e.g. microswitch) endstop for high end on X via pin io0.in
      M574 Y2 S1 P"!io1.in" ; configure switch-type (e.g. microswitch) endstop for high end on Y via pin io1.in
      M574 Z2 S1 P"!io2.in" ; configure switch-type (e.g. microswitch) endstop for high end on Z via pin io2.in

      ; Z-Probe
      M558 P8 R0.4 C"io8.in+io8.out" H5 F1800 T6000 ; set Z probe type to effector and the dive height + speeds
      G31 P100 X0 Y0 Z-0.375 ; set Z probe trigger value, offset and trigger height
      M557 R250 S20 ; define mesh grid

      ; Heaters
      M308 S0 P"temp0" Y"thermistor" T100000 B4138 ; configure sensor 0 as thermistor on pin temp0
      M950 H0 C"out0" T0 ; create bed heater output on out0 and map it to sensor 0
      M307 H0 B1 S1.00 ; enable bang-bang mode for the bed heater and set PWM limit
      M140 H0 ; map heated bed to heater 0
      M143 H0 S120 ; set temperature limit for heater 0 to 120C
      M308 S1 P"temp1" Y"thermistor" T100000 B4138 ; configure sensor 1 as thermistor on pin temp1
      M950 H1 C"out1" T1 ; create nozzle heater output on out1 and map it to sensor 1
      M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
      M143 H1 S280 ; set temperature limit for heater 1 to 280C

      ; Fans
      M950 F0 C"out7" Q500 ; create fan 0 on pin out7 and set its frequency
      M106 P0 S1 H-1 ; set fan 0 value. Thermostatic control is turned off
      M950 F1 C"out4" Q500 ; create fan 1 on pin out4 and set its frequency
      M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on

      ; Tools
      M563 P0 S"Extruder" D0 H1 F0 ; define tool 0
      G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
      G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C

      ; Custom settings are not defined

      ; Miscellaneous
      M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss

      And here's my bed.g file:

      ; bed.g
      ; called to perform automatic delta calibration via G32
      ;
      ; generated by RepRapFirmware Configuration Tool v3.3.10 on Sun May 22 2022 18:48:45 GMT-0500 (CDT)
      M561 ; clear any bed transform
      ; Probe the bed at 3 peripheral and 3 halfway points, and perform 6-factor auto compensation
      ; Before running this, you should have set up your Z-probe trigger height to suit your build, in the G31 command in config.g.
      G30 P0 X0 Y84.9 H0 Z-9999
      G30 P1 X73.53 Y-42.45 H0 Z-9999
      G30 P2 X-73.53 Y-42.45 H0 Z-9999
      G30 P3 X0 Y42.4 H0 Z-9999
      G30 P4 X36.72 Y-21.2 H0 Z-9999
      G30 P5 X-36.72 Y-21.2 H0 Z-9999
      G30 P6 X0 Y0 H0 Z-9999 S6
      ; Use S-1 for measurements only, without calculations. Use S4 for endstop heights and Z-height only. Use S6 for full 6 factors
      ; If your Z probe has significantly different trigger heights depending on XY position, adjust the H parameters in the G30 commands accordingly. The value of each H parameter should be (trigger height at that XY position) - (trigger height at centre of bed)

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

        Can it physically reach those spots or are you saying it gives up probing there before it reaches?

        Have you tried increasing your dive height in M558 from H5 to H15 as a test?

        Z-Bot CoreXY Build | Thingiverse Profile

        dmnvkundefined 2 Replies Last reply Reply Quote 0
        • dmnvkundefined
          dmnvk @Phaedrux
          last edited by

          @phaedrux

          It should be able to reach since I have a 280ish mm build plate but am aiming for a much smaller area than that. I remember reading somewhere about that dive height so I’ll give that a shot next. Thank you!

          1 Reply Last reply Reply Quote 0
          • dmnvkundefined
            dmnvk @Phaedrux
            last edited by

            @phaedrux That appears to have fixed it. I feel really dumb after changing just about everything but that setting. Thanks again for the help and hopefully I'm done bugging you smart guys with dumb guy questions!

            1 Reply Last reply Reply Quote 1
            • Phaedruxundefined Phaedrux marked this topic as a question
            • Phaedruxundefined Phaedrux has marked this topic as solved
            • First post
              Last post
            Unless otherwise noted, all forum content is licensed under CC-BY-SA