Issues with my Duet2 wifi delta printer auto calibration
-
Hello there. I am having a big problem with my Delta printer. At one point I managed to get it to print a small calibration cube. Afterwards, I tried to print a large rectangular piece that was much wider. I noticed low spots and high spots and decided to try to better level my bed. After rebuilding my bed file, now after auto calibration my effector nozzle runs off the bed after the 3rd test point. This is what happens. If I let it continue it will collide with the belt.
Here is my config file. Let me know what other files I can give to assist with help. I am using a He3d printer frame with a Duet3d wifi 2 controller, a duet3d smart effector, and carbon fiber magball rod ends (unsure of the model but theyre a decent quality all from a friend who got out of printing).
; Configuration file for Duet WiFi (firmware version 2.03) ; executed by the firmware on start-up ; ; generated by RepRapFirmware Configuration Tool v2.0.3 on Thu Sep 05 2019 15:50:44 GMT-0400 (Eastern Daylight Time) ; General preferences G90 ; send absolute coordinates... M83 ; ...but relative extruder moves M550 P"Tall Printer" ; set printer name M665 R180 L360 B138 H570 ; 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 M552 S1 ; enable network M586 P0 S1 ; enable HTTP M586 P1 S0 ; disable FTP M586 P2 S0 ; disable Telnet ; Drives M569 P0 S0 ; physical drive 0 goes backwards M569 P1 S0 ; physical drive 1 goes backwards M569 P2 S0 ; physical drive 2 goes backwards M569 P3 S1 ; physical drive 3 goes forwards M584 X0 Y1 Z2 E3 ; set drive mapping M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation M92 X80.00 Y80.00 Z80.00 E500.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 X1300 Y1300 Z1300 E1300 I60 ; 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"!xstop" ; X active low and disabled endstop M574 Y2 S1 P"!ystop" ; Y active low and disabled endstop M574 Z2 S1 P"!zstop" ; Z active low and disabled endstop ; Z-Probe M558 P8 C"zprobe.in+zprobe.mod" R0.4 H10 F1200 T6000 ; set Z probe type to effector and the dive height + speeds G31 P100 X0 Y0 Z-.54 ; set Z probe trigger value, offset and trigger height M557 R85 S20 ; define mesh grid ; Temperature Sensors M308 S0 P"bed_temp" Y"thermistor" T100000 B3950 ; define bed temperature sensor M308 S1 P"e0_temp" Y"thermistor" T100000 B4725 C7.06e-8 ; define E0 temperature sensor ; Heaters M950 H0 C"bed_heat" T0 ; heater 0 uses the bedheat pin, sensor 0 M950 H1 C"e0_heat" T1 ; heater 1 uses the e0_heat pin and sensor 1 M307 H0 B0 S1.00 M140 H0 ; Fans M950 F1 C"fan1" Q500 M106 P1 S1 H1 T45 M950 F0 C"fan0" Q500 ; Part Cooling fan M106 C"PartFan" P0 S0 H-1 B1 M307 H0 ; report the process parameters for heater 0 M307 H0 R2.186 K0.17:0.11 D5.67 S1.00 V24.0 ; set the process parameters for heater 0 ; Tools M563 P0 D0 H1 ; 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 M501 ; recall last used parameters
-
@sneakyferret
You might have an old config-override file on SD card which messes up the printer?
Or you have to generate a new bed.g file with correct radius parameter?
radius = diameter/2 -
@sneakyferret said in Issues with my Duet2 wifi delta printer auto calibration:
; Tools
M563 P0 D0 H1 ; define tool 0on another note, you should associate the part cooling fan to the tool. Add
F0
to the end of M563 e.g.M563 P0 D0 H1 F0
-
@o_lampe Thanks for the reply. What about my radius is incorrect? I have a 310mm diameter print bed that i am using a radius of 138 to account for clips that secure my printing mirror to the heated bed so I didn't want my nozzle to smack into those. (I need a better securing in place but thats later until i get this fixed! XD)
-
@jay_s_uk Thanks! What will this do exactly? (Very new, coming into all of this with learning in mind!)
-
@sneakyferret associates the fan correctly for when the slicer is sending fan on/off commands etc
-
@jay_s_uk Duly noted, thanks!
-
@sneakyferret delete the config-override.g file as @o_lampe suggests. If the problem persists, please post your bed.g file.
-
@dc42 Thanks everyone! It's behaving much better now. Now, I start the fun process of correcting a funky height map which I may know already what the problem is. Thank you again.