Independent Z with Independent Sensors U steps/mm wrong
-
Hi,
That article that Phaedrux referenced makes no mention of creating other axes.
So I think there may be something amiss in your configuration.
Frederick
-
Just to make it clearer what is happening when homing Z
; homez.g ; called to home the Z axis ; ; ============= PRE-HOMING ===================== ; Ignore Machine boundaries M564 H0 S0 ; Turn off bed leveling during homing G29 S2 ; Does the same as M561! G29 S2 ; Do it twice because once just isn't enough ; Switch to Origin Tool T0 ; Relative positioning G91 ; Provide Z height clearance G1 Z10 F250 S1 ; =========== Reconfigure axes ========= M584 Z2 U4 P4 ; Split Z into 2 (Z+U) ; =========== set U axis current ====== ;M906 U1200 I60; Set motor currents (mA) and idle current percentage ; ============ HOME Z ============== ; Rapid Z+U until limit switch triggers G0 Z450 U450 F1500 S1 ; Back off to release limit switch G1 Z-5 U-5 F120 S2 ; Slow advance to trigger limit switch G0 Z20 U20 F120 S1 ;Offset U before merge to level platform - again ;Offset not needed due to tuned sensor flags. ;G1 U-0.5 F1000 ;Merge U and Z again M584 Z2:4 P3 ;Move back again 5mm in -z direction G1 Z-5 F1500 S2 ;Set actual z-height (might be able to do this in config as part of default height. G92 Z322.3 U322.3 ; ============ Post-Homing ============== ; Revert to absolute coordinates G90 ; Re-enable mesh leveling G29 S1 ; Stop movement across limits, enable boundaries, homing requirement M564 H1 S1 ;
-
The ProMega config setup is a little unorthodox in my opinion. There have been a few other threads trying to sort through it in the recent past.
Have you seen this? https://promega.printm3d.com/documentation/software-firmware/adjust-homing-macros
-
Check that in config.g you have a M584 command that creates the U axis and also redefines the E drivers, earlier than your M350 and M906 commands. I'm using a smartphone so it's not easy for me to look at the config.g that you uploaded.
-
I think the problem is that the u axis isn't created until the homing files as it's missing from the m584 in the config.g
-
@phaedrux said in Independent Z with Independent Sensors U steps/mm wrong:
I think the problem is that the u axis isn't created until the homing files as it's missing from the m584 in the config.g
In that case the U motor will still be set up as an extruder, and the microstepping and motor current will be set as for the extruder. So if E microstepping is different from Z microstepping, that would explain the symptom
-
@phaedrux said in Independent Z with Independent Sensors U steps/mm wrong:
https://duet3d.dozuki.com/Wiki/Bed_levelling_using_multiple_independent_Z_motors
Yes, that's what I based my config on!
-
-
@phaedrux There's no reason to treat this like a Promega. I've gutted it, changed the Z drive system to dual lead screws, the rails, the carriage, the board, the bed...
-
Defining U in config.g before then combining worked for me. Thanks for the help!
-
@leonmf said in Independent Z with Independent Sensors U steps/mm wrong:
Defining U in config.g before then combining worked for me. Thanks for the help!
Hi,
What is the reason for end stop switches on both z axes?
Frederick
-
@fcwilt I believe it's used as an X axis leveling mechanism.