New to the duet COMPLETE NEWBIE
-
@Phaedrux i took off the H2 and it wouldnt let me home all it gave me
G28
Error: G0/G1: insufficient axes homedI put it back on and homed all again and it homed correctly . . . idk whats going on.
-
That's kind of why H2 shouldn't be in there. H2 will let it proceed even if there is a problem.
Looking at the printer from the front (so that the bed motor is at the rear) the 0,0 origin point should be the front left of the bed. -x should move to the left etc as I mentioned above.
We can test this without trying to home the printer first. Turn off the printer, move the print head and bed to the center point. Now turn the printer on and send g92 x150 y150 z1. Now you should be able to jog the axis around with the buttons to test that they move in the correct directions.
Then we need to know where the endetops are physically located on the cr10. IF it matches the ender3 the x should be on the left and y at the back by the motor. Is that right?
Then send m119 to get the status of the endstops. They should all say not triggered. And when you press them and send m119 it should say triggered.
-
; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v3.2.1 on Tue Jan 19 2021 17:33:25 GMT-0500 (Eastern Standard Time)
G91 ; relative positioning
G1 H2 Z18 F480000 ; lift Z relative to current position
G1 H1 X-305 Y-305 F3000 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 H2 X5 Y5 F480000 ; go back a few mm
G1 H1 X-305 Y-305 F3600 ; move slowly to X and Y axis endstops once more (second pass)
G1 H1 Z-405 F3600 ; move Z down stopping at the endstop
G90 ; absolute positioning
G92 Z0 ; set Z position to axis minimum (you may want to adjust this); Uncomment the following lines to lift Z after probing
;G91 ; relative positioning
;G1 Z18 F8000 ; lift Z relative to current position
;G90 ; absolute positioningSo just the first H2 right?
-
@Phaedrux
1/21/2021, 4:54:38 PM m119
Endstops - X: not stopped, Y: not stopped, Z: at min stop, Z probe: at min stop -
@Phaedrux
yes. Z is still triggered .
-
Endstops - X: not stopped, Y: at min stop, Z: at min stop, Z probe: at min stop
Y is triggered but Z is not at the moment and it still reads as "triggered". .
-
@Phaedrux They are all moving correctly . im about to move it to the center to see if its still triggered. .
m119
Endstops - X: not stopped, Y: not stopped, Z: not stopped, Z probe: at min stopYAYYYYYY
-
@Phaedrux
1/21/2021, 5:04:08 PM G28
Error: G0/G1: insufficient axes homedDoes this mean i have to home them all individually at this point?
G1 (H1) Z18 F480000 ; lift Z relative to current position
would this work? -
@gabrealek said in New to the duet COMPLETE NEWBIE:
So just the first H2 right?
Nope, just the one for the XY axis move.
G1 H2 X5 Y5 F480000 ; go back a few mm
-
@Phaedrux So do i change the value for F480000?
As in go back a few MM i took it down toG91 ; relative positioning
G1 Z18 F480000 ; lift Z relative to current position
G1 H1 X-300 Y-300 F3000 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 H2 X5 Y5 F480000 ; go back a few mm
G1 H1 X-300 Y-300 F3600 ; move slowly to X and Y axis endstops once more (second pass)
G1 H1 Z-400 F3600 ; move Z down stopping at the endstop
G90 ; absolute positioning
G92 Z0 ; set Z position to axis minimum (you may want to adjust this)So now when i try to homeall i cannot, it gives me
G28
Error: G0/G1: insufficient axes homedSo now its
G91 ; relative positioning
G1 Z18 F480000 ; lift Z relative to current position
G1 H1 X-300 Y-300 F3000 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 X5 Y5 F480000 ; go back a few mm
G1 H1 X-300 Y-300 F3600 ; move slowly to X and Y axis endstops once more (second pass)
G1 H1 Z-400 F3600 ; move Z down stopping at the endstop
G90 ; absolute positioning
G92 Z0 ; set Z position to axis minimum (you may want to adjust this) -
@gabrealek said in New to the duet COMPLETE NEWBIE:
I think this should work. Since you have a Z end stop you can start by homing Z.
My printers don't allow for homing X and Y at the same time - so I don't even know if it is possible. If not just do them one axis at a time.
Add/Adjust F params as desired.
JOOC where did the 480,000 value come from? That is rather fast.
G91 G1 H1 Z-400 F3000 G92 Z0 ; change Z0 to match the actual Z co-ordinate at which the Z end stop triggers G1 Z10 G1 H1 X-300 Y-300 G1 X5 Y5 G1 H1 X-6 Y-6 F300 G90
Frederick
-
@fcwilt they were generated with the config tool . . what should it be set to?
-
@gabrealek said in New to the duet COMPLETE NEWBIE:
G91 ; relative positioning
G1 Z18 F480000 ; lift Z relative to current position
G1 H1 X-300 Y-300 F3000 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 H2 X5 Y5 F480000 ; go back a few mm
G1 H1 X-300 Y-300 F3600 ; move slowly to X and Y axis endstops once more (second pass)
G1 H1 Z-400 F3600 ; move Z down stopping at the endstop
G90 ; absolute positioningThe reason for the error is because you've taken the H2 off of the Z move at the start and end. Those were ok. I just wanted you to remove it from the XY move in the middle.
This would work, but @fcwilt provided a better option anyway that homes the Z axis first.
G91 ; relative positioning G1 H2 Z18 F6000 ; lift Z relative to current position G1 H1 X-300 Y-300 F3000 ; move quickly to X and Y axis endstops and stop there (first pass) G1 X5 Y5 F6000 ; go back a few mm G1 H1 X-300 Y-300 F3600 ; move slowly to X and Y axis endstops once more (second pass) G1 H1 Z-400 F3600 ; move Z down stopping at the endstop G1 Z5 ; back off G1 H1 Z-400 F600 ; home z again slowly G90 ; absolute positioning
F480000 is 8000mm/s which is really fast. But it wouldn't actually be able to use that speed because the max speed limit set in config.g is 6000mm/min which is a good cruising around speed (100mm/s)
-
@Phaedrux Okay.
With both of them my z wont go any lower than the middle. i cant get close to the bed at all . . -
If you send just
G1 H1 Z-400 F600
in the console does it move the z axis down to the endstop or does it just sit there and change the z axis position to 0? -
@Phaedrux said in New to the duet COMPLETE NEWBIE:
G1 H1 Z-400 F600
It just sits there. when i press home z it goes higher. when i try to bring it back down it does nothing.
-
@Phaedrux
; homeall.g
; called to home all axes
;
; generated by RepRapFirmware Configuration Tool v3.2.1 on Tue Jan 19 2021 17:33:25 GMT-0500 (Eastern Standard Time)G91 ; relative positioning
G1 H2 Z18 F6000 ; lift Z relative to current position
G1 H1 X-300 Y-300 F3000 ; move quickly to X and Y axis endstops and stop there (first pass)
G1 X5 Y5 F6000 ; go back a few mm
G1 H1 X-300 Y-300 F3600 ; move slowly to X and Y axis endstops once more (second pass)
G1 H1 Z-400 F3600 ; move Z down stopping at the endstop
G1 Z5 ; back off
G1 H1 Z-400 F600 ; home z again slowly
G90 ; absolute positioning; homez.g
; called to home the Z axis
;
; generated by RepRapFirmware Configuration Tool v3.2.1 on Tue Jan 19 2021 17:33:25 GMT-0500 (Eastern Standard Time)
G91 ; relative positioning
G1 H2 Z18 F6000 ; lift Z relative to current position
G1 H1 Z-405 F6000 ; move Z down until the endstop is triggered
G92 Z0 ; set Z position to axis minimum (you may want to adjust this)
; set Z position to axis minimum (you may want to adjust this) -
And does it set the current position to Z0?
Check M119 again please. It sounds like the endstop is already triggered at the start, so it won't move any further.
-
@Phaedrux said in New to the duet COMPLETE NEWBIE:
M119
M119
Endstops - X: not stopped, Y: not stopped, Z: at min stop, Z probe: at min stop -
And just to be clear, when you sent M119 the z endstop wasn't actually pressed, right?
Quick photo of the z endstop?Maybe you DO need the
!
to invert the Z endstop?