Help: Temp Sensors and Homing Issues
-
That worked: Nice soft Stop at my endstop and adjusted my height down to 200mm was set at 205mm would it be better to just remove the Z movement from X and Y also
-
@94118 said in Help: Temp Sensors and Homing Issues:
would it be better to just remove the Z movement from X and Y also
You could since you aren't using a probe or anything that would need to be raised above the bed before movement.
-
Would i be all good to load filament and try a test print
-
Machine movement controls not responsive i click on the fine movement tabs and it does noting machine is in idle
-
So the printer will home properly but then you can't use the jog buttons in DWC?
-
Yes that is correct
-
Can you send movement commands in the console?
Do the paneldue move buttons work? -
No i cannot send commands from console or paneldue
-
Please post your current config.g and homing files so I can see what state your machine would be in after homing.
-
-
In homeX you should have a negative move to back off the endstops.
G91 ; relative positioning G1 H1 X235 F1800 ; move quickly to X axis endstop and stop there (first pass) G1 H2 X5 F6000 ; go back a few mm G1 H1 X235 F360 ; move slowly to X axis endstop once more (second pass) G90 ; absolute positioning
Should be
G91 ; relative positioning G1 H1 X235 F1800 ; move quickly to X axis endstop and stop there (first pass) G1 X-5 F6000 ; go back a few mm G1 H1 X235 F360 ; move slowly to X axis endstop once more (second pass) G90 ; absolute positioning
Your homey has the negative, but you don't need the H2 on the second move.
G91 ; relative positioning G1 H1 Y215 F1800 ; move quickly to Y axis endstop and stop there (first pass) G1 H2 Y-5 F6000 ; go back a few mm G1 H1 Y215 F360 ; move slowly to Y axis endstop once more (second pass) G90 ; absolute positioning
Should be
G91 ; relative positioning G1 H1 Y215 F1800 ; move quickly to Y axis endstop and stop there (first pass) G1 Y-5 F6000 ; go back a few mm G1 H1 Y215 F360 ; move slowly to Y axis endstop once more (second pass) G90 ; absolute positioning
Your homez only has a single homing pass. You may want to add a second slower pass. You're also missing the G90 at the end, which could be your movement problem.
G91 ; relative positioning G1 H1 Z200 F1800 ; move Z up until the endstop is triggered G92 Z0 ; set Z position to axis minimum (you may want to adjust this)
Should be
G91 ; relative positioning G1 H1 Z200 F1800 ; move Z up until the endstop is triggered G1 Z-5 G1 H1 Z200 F360 ; second pass G92 Z0 ; set Z position to axis minimum (you may want to adjust this) G90 ; absolute positioning
-
Got it to home correctly still cannot use jog controls for fine movement
-
@94118 said in Help: Temp Sensors and Homing Issues:
jog controls for fine movement
What exactly do you mean by that? Can you post a photo of what you're trying to use?
-
https://drive.google.com/open?id=1E9Nnj0lRRrosyiqkRENvNrMgNKRmSi7d
https://drive.google.com/open?id=1E9ZpqFKI_MspoPvdRPRjLaykGRvhTB9-I would use the jog controls for filament load and unload as well as jams or clogging
-
The extruder motor won't move unless it's at printing temp.
Are the x and y and z jog buttons working?
-
they will work only if i press the plus side of the controls then press the negative side
-
Ok that probably means that your endstop positions and/or your motor directions aren't correct.
Where is the X endstop? Left or right side?
Where is the Y endstop? Front or back?Perhaps take a look at this guide on commissioning a printer: https://duet3d.dozuki.com/Guide/Ender+3+Pro+and+Duet+Maestro+Guide+Part+3:+Commissioning/39
-
X is at the Right, y is at the Left rear corner
-
; Endstops M574 X1 S1 P"!xstop"
That should be
; Endstops M574 X2 S1 P"!xstop"
Because your X endstop is at the high end of travel on the right side.
Change that and see if it works better after homing.
-
when i changed it from x1 to x2 motor direction went in opposite direction so i changed it back to x1