Have to restart for first layer to be correct
-
You can delete homedelta.g.
What are the contents of the deploy and retract files? I don't think your probe type needs to be deployed and retracted, correct? You can delete those as well if that's the case.
-
Ok, I will get those out tomorrow and test again. I am printing again. Hopefully this one will finish, I am having a problem with this thing breaking off small hollow columns. Several hours into prints it will break a necessary part off and then I quit. This print has none of that so I will let you know. Again, thank you for all your help.
-
Retract
; Probe retraction routine for Mini Kossel
M564 S0 ; don't apply limits
G1 Z40 F10000 ; raise head
G1 X-59 Y66 Z35 ; move over the post
G1 Z7 F500 ; push probe down on post
G1 Z35 F10000 ; raise head again
G1 X0 Y0 ; move to somewhere sensible
M564 S1 ; apply limits againDeploy
; Probe deployment routine for Mini Kossel
M564 S0 ; don't apply limits
G1 X25 Y93 Z40 F10000 ; put probe arm next to belt
G1 X-5 F500 ; move probe arm across belt
G1 X12 F1000 ; move probe back
G1 X0 Y0 F10000 ; move to somewhere sensible
M564 S1 ; apply limits againHomeDelta
; Homing file for RepRapFirmware on Mini Kossel
G91 ; use relative positioning
;******* Change F250 in the following line to F2500 when you are finished commissioning
;******* Change 320 in the following to a higher value if your Kossel has taller towers
G1 S1 X320 Y320 Z320 F2500 ; move all carriages up 320mm, stopping at the endstops
G1 S2 X-3 Y-3 Z-3 ; move all carriages down 3mm
G1 S1 X6 Y6 Z6 F250 ; move carriages slowly up 6mm, stopping at the endstops
G1 Z-5 F2000 ; down a few mm so that we can centre the head
G90 ; back to absolute positioning
G1 X0 Y0 F2000 ; centre the head and set a reasonable feed rate -
@phaedrux said in Have to restart for first layer to be correct:
G90 ; absolute positioning
G30 ; probe the bed
G1 Z5 F100 S2 ; uncomment this line to lift the nozzle after homingJust FYI, I had to kill the print so I restarted with the files removed and now all of the things work as they should, G30 and G29. I will let you know progress. And thanks again.
-
Yeah those files don't belong on a CoreXY. Not sure what selections the configurator had to give you those. You could probably lose bed.g as well if you intend to use mesh grid compensation anyway, which you should. If the build plate is flat you can just use a sparse grid for the same results as the 5 point probing.
Glad homing is sorted. Hopefully with proper z height now you won't have any more collisions.
Have you run a PID tune on the bed and hot end? Calibrated the extrusion factor? That can help with collisions as well (over extrusion, bed expansion)
-
Yes sir, All of that (PID, Extrusion, ETC...) was done. I will leave bed.g as the entire frame, bed frame too is printed so I may need to change to G31 instead of G29 S1 in my script. If you would like to see the printer I have the entire build on YT. Kuntry3D on YT let me know what you think. I had to re-flow the solder for the main DC power in on the Duet this morning as that was what was causing my failures due to voltage inconsistencies. Once I fxed that my voltage is steady and everything is now sorted. Thank you for all of your help, you have been very patient with me and my questions.
-
No problem at all. Glad it's all working out. I'll definitely check out your channel.
-
@phaedrux said in Have to restart for first layer to be correct:
Grasping at straws here, but is there a reason you've chosen 32 microstepping as opposed to 16 with interpolation to 256?
I just saw this.
"Grasping at straws here, but is there a reason you've chosen 32 microstepping as opposed to 16 with interpolation to 256?"Can you tell me how to do this?
-
The M350 command in your config.
Simply change it to 16 and add I1 (that's a letter I as in I love you man)
Your steps per mm should already be set for 16 microstepping as the duet will make adjustments for you if you change it after. But double check just to be sure.
Give this section a read it'll have some more detail but I think you're good to go.
https://duet3d.dozuki.com/Wiki/ConfiguringRepRapFirmwareCartesianPrinter#Section_Movement_section -
Thank you sir