duet 2 wifi ona ctc dual help plz
-
What is the config you are using now? (can you copy and paste it?)
What currently works, and what still doesn't work? -
ok so the z end stop is working but x is not and i cant tell if the y is or not it will not move to it
-
ok i got z and y to work now x is the problem y is still bouncing though i think the dissent it can travel is wrong -12 y is at end stop and 110 is the pint it needs to stop but it will go to 137 so if i change M208 X273 Y137 Z150 S0 to what i need will that fix that? im still working on fixing the x end stop as well
-
ok i got the distance fixed but its like it don't recognize the x end stop command i have put M574 X1 Y2 Z2 S0
and M574 X2 Y2 Z2 S0 but nether work y and z are great now -
@twistedechos when you click the x endstop by hand does the light on the endstop change? Does the light on the duet change? Does the endstop status in the web control show that it's pressed? Or if you send M119 while it's pressed?
-
lights work it says all of them are not stopped
-
all of them are pressed and lit up in this pic
-
I think i got it figured out for my head to rap around it i had to go right it all from scratch using his files as a reference. if it works you will see some files posted on here if not ill be back lol
-
If you pot your current config.g and homing files I can give some more feedback on what to change.
-
@phaedrux said in duet 2 wifi ona ctc dual help plz:
If you pot your current config.g and homing files .................
What sort of compost would you recommend and how often should he water them?
(Sorry - just couldn't resist....)
-
3_1553307719824_homez.g 2_1553307719824_homey.g 1_1553307719824_homex.g 0_1553307719823_homeall.g i have not messed with any of these yet
-
And your config.g as it is now?
-
-
i need to fix the M574 i think i should be x2 y1 z2 s0
-
the files i got the guy said he has a bigger bed so i will have to change that too i think
-
@twistedechos said in duet 2 wifi ona ctc dual help plz:
i need to fix the M574 i think i should be x2 y1 z2 s0
As I said above, based on your description of the end stop positions I think this should be your M574:
@phaedrux said in duet 2 wifi ona ctc dual help plz:
So you'll need to modify the endstop configuration in config.g to match the position of the endstops.
M574 X2 Y1 Z1 S0Have you tried that one? X endstop to the right, Y to the front, Z towards the nozzle.
-
For the Z homing files you posted, it looks like the thingivese files are configured to work with a Z probe, which you do not have. So you'll have to follow the comments in there to switch to the endstop homing.
Like this:
; homez.g ; called to home the Z axis ; ; generated by RepRapFirmware Configuration Tool on Sat Jul 01 2017 14:45:41 GMT+0800 (Malay Peninsula Standard Time) ; Move Extruder out of the way G90 G1 S2 X8 Y-5 F150000 ; Lift Z relatively to current position G91 G1 S2 Z5 F150000 ; Code for legacy switch Endstop home Z ENDSTOP Z uncomment below section if the legacy micro switch endstop for Z is used ; Home Z against legacy switch enstop G91 G1 Z-155 F180 S1 ; rough home Z axis G1 Z5 F500 ; move down by 5mm G1 Z-155 F45 S1 ; fine home z axis ; Adjust Z distance from Z endstop <UPDATE> Optional to change Z0 position. ;G90 ;G1 Z0.00 F500 ; additional distance from bed ;G92 Z0 ; Back to absolute positioning ;G90 ; Code for Sensor Based Z Homing <ENDSTOP Z> comment out below section if the legacy micro switch endstop for Z is used ; Go to first bed probe point and home Z ;G1 X156 Y64 F150000 ; <UPDATE> update to desired probing point ;G30 ; Uncomment the following lines to lift Z after probing G91 G1 Z5 F2500 G90
; homey.g ; called to home the Y axis ; ; generated by RepRapFirmware Configuration Tool on Sat Jul 01 2017 14:45:41 GMT+0800 (Malay Peninsula Standard Time) ; Lift Z relative to current position G91 G1 S2 Z5 F150000 G90 ; Move quickly to Y axis endstop and stop there (first pass) G1 Y155 F1800 S1 ; Go back a few mm G91 G1 Y-5 F150000 G90 ; Move slowly to X axis endstop once more (second pass) G1 Y155 F360 S1 ; Lower Z again G91 G1 S2 Z-5 F150000 G90
; homex.g ; called to home the X axis ; ; generated by RepRapFirmware Configuration Tool on Sat Jul 01 2017 14:45:41 GMT+0800 (Malay Peninsula Standard Time) ; Lift Z relative to current position G91 G1 S2 Z5 F150000 G90 ; Move quickly to X axis endstop and stop there (first pass) G1 X290 F1800 S1 ; Go back a few mm G91 G1 X-5 F150000 G90 ; Move slowly to X axis endstop once more (second pass) G1 X290 F360 S1 ; Lower Z again G91 G1 S2 Z-5 F150000 G90
; homeall.g ; called to home all axes ; ; generated by RepRapFirmware Configuration Tool on Sat Jul 01 2017 14:45:41 GMT+0800 (Malay Peninsula Standard Time) ; Relative positioning G91 ; Lift Z G1 S2 Z5 F150000 ; Course home X and Y G1 X290 Y-155 F1800 S1 ; Move away from the endstops G1 X-5 Y5 F150000 ; Fine home X and Y G1 X290 Y-155 F360 S1 ; Code for legacy switch Endstop home Z ENDSTOP Z uncomment below section if the legacy micro switch endstop for Z is used ; Move Extruder out of the way G90 G1 X8 Y-5 F150000 ; Home Z against legacy switch enstop G91 G1 Z-155 F180 S1 ; rough home Z axis G1 Z5 F500 ; move down by 5mm G1 Z-155 F45 S1 ; fine home z axis ; Adjust Z distance from Z endstop <UPDATE> Optional to change Z0 position. ;G90 ;G1 Z0.00 F500 ; additional distance from bed ;G92 Z0 ; Absolute positioning G90 ; Code for Sensor Based Z Homing <ENDSTOP Z> comment out below section if the legacy micro switch endstop for Z is used ; Go to first bed probe point and home Z ;G1 X156 Y64 F150000 ; <UPDATE> update to desired probing point ;G30 ; Uncomment the following line to lift the nozzle after probing G1 Z5 F2500
I also modified the home X and Y to allow raising the Z axis out of the way and to hopefully move in the right direction based on what you've described.
-
@phaedrux thank you ill go through it and try to fix it and repost
-
@phaedrux said in duet 2 wifi ona ctc dual help plz:
; homez.g
; called to home the Z axis
;
; generated by RepRapFirmware Configuration Tool on Sat Jul 01 2017 14:45:41 GMT+0800 (Malay Peninsula Standard Time); Move Extruder out of the way
G90
G1 S2 X8 Y-5 F150000; Lift Z relatively to current position
G91
G1 S2 Z5 F150000; Code for legacy switch Endstop home Z ENDSTOP Z uncomment below section if the legacy micro switch endstop for Z is used
; Home Z against legacy switch enstop
G91
G1 Z-155 F180 S1 ; rough home Z axis
G1 Z5 F500 ; move down by 5mm
G1 Z-155 F45 S1 ; fine home z axis
; Adjust Z distance from Z endstop <UPDATE> Optional to change Z0 position.
;G90
;G1 Z0.00 F500 ; additional distance from bed
;G92 Z0; Back to absolute positioning
;G90; Code for Sensor Based Z Homing <ENDSTOP Z> comment out below section if the legacy micro switch endstop for Z is used
; Go to first bed probe point and home Z
;G1 X156 Y64 F150000 ; <UPDATE> update to desired probing point
;G30; Uncomment the following lines to lift Z after probing
G91
G1 Z5 F2500
G90on this for legacy switch endstop what dose he mean by uncomment below is he saying to get rid of the ; or add one in?
-
In my example I posted I uncommented the switch part and commented out the z probe part because you don't have one.