duet 2 wifi ona ctc dual help plz
-
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.
-
@phaedrux ok thank you so i got it to try to home on its way to home the y axis bounces off the endstop and the z will bounce off the bottom away from the endstop x will try to bounce away from the endstop aswell
-
ok i got everything homing but y likes to bounce off of the endstop still4_1553803169845_homez.g 3_1553803169845_homey.g 2_1553803169845_homex.g 1_1553803169845_homeall.g 0_1553803169845_config.g
-
What do you mean by bounce?
-
I think I may see the problem. In homeall you have
; Fine homing homing
G1 X230 Y5 F360 S1The Y value should be negative and probably larger than 5 just in case.
-
Does homey by itself work properly?
-
home x and y work well but where should x home be it is at the front right atm and y pounces when i click home z and when i say bounce i mean it tries to go past boundarys
-
Sorry I'm on the road at the moment so I any take a closer look. But I suggest you go through the testing endstops and homing links above to work it through. You'll have to flip a direction or change a positive or negative sign maybe
-
next question how dose it know where the print bed is?
-
i cant figure it out i really just want to start printing agian
-
OMG!! i got it it homes very nice now here are the files for everyone to use ctc bizer should also work on replicator 2 good luck guys
4_1553816786429_homez.g 3_1553816786429_homey.g 2_1553816786429_homex.g 1_1553816786428_homeall.g 0_1553816786428_config.g
also @Phaedrux i should be able to print now right?