Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    duet 2 wifi ona ctc dual help plz

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    4
    91
    7.5k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • deckingmanundefined
      deckingman @Phaedrux
      last edited by

      @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....) ☺

      Ian
      https://somei3deas.wordpress.com/
      https://www.youtube.com/@deckingman

      1 Reply Last reply Reply Quote 1
      • twistedechosundefined
        twistedechos
        last edited by

        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

        1 Reply Last reply Reply Quote 0
        • Phaedruxundefined
          Phaedrux Moderator
          last edited by

          And your config.g as it is now?

          Z-Bot CoreXY Build | Thingiverse Profile

          1 Reply Last reply Reply Quote 0
          • twistedechosundefined
            twistedechos
            last edited by

            0_1553348953660_config.g

            twistedechosundefined 1 Reply Last reply Reply Quote 0
            • twistedechosundefined
              twistedechos @twistedechos
              last edited by twistedechos

              i need to fix the M574 i think i should be x2 y1 z2 s0

              1 Reply Last reply Reply Quote 0
              • twistedechosundefined
                twistedechos
                last edited by

                the files i got the guy said he has a bigger bed so i will have to change that too i think

                1 Reply Last reply Reply Quote 0
                • Phaedruxundefined
                  Phaedrux Moderator @Phaedrux
                  last edited by

                  @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 S0

                  Have you tried that one? X endstop to the right, Y to the front, Z towards the nozzle.

                  Z-Bot CoreXY Build | Thingiverse Profile

                  1 Reply Last reply Reply Quote 0
                  • Phaedruxundefined
                    Phaedrux Moderator
                    last edited by Phaedrux

                    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.

                    Z-Bot CoreXY Build | Thingiverse Profile

                    twistedechosundefined 1 Reply Last reply Reply Quote 0
                    • twistedechosundefined
                      twistedechos @Phaedrux
                      last edited by

                      @phaedrux thank you ill go through it and try to fix it and repost

                      1 Reply Last reply Reply Quote 0
                      • twistedechosundefined
                        twistedechos
                        last edited by

                        @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
                        G90

                        on this for legacy switch endstop what dose he mean by uncomment below is he saying to get rid of the ; or add one in?

                        1 Reply Last reply Reply Quote 0
                        • Phaedruxundefined
                          Phaedrux Moderator
                          last edited by

                          In my example I posted I uncommented the switch part and commented out the z probe part because you don't have one.

                          Z-Bot CoreXY Build | Thingiverse Profile

                          twistedechosundefined 1 Reply Last reply Reply Quote 0
                          • twistedechosundefined
                            twistedechos @Phaedrux
                            last edited by

                            @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

                            1 Reply Last reply Reply Quote 0
                            • twistedechosundefined
                              twistedechos
                              last edited by

                              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

                              1 Reply Last reply Reply Quote 0
                              • Phaedruxundefined
                                Phaedrux Moderator
                                last edited by

                                What do you mean by bounce?

                                Z-Bot CoreXY Build | Thingiverse Profile

                                1 Reply Last reply Reply Quote 0
                                • Phaedruxundefined
                                  Phaedrux Moderator
                                  last edited by

                                  I think I may see the problem. In homeall you have

                                  ; Fine homing homing
                                  G1 X230 Y5 F360 S1

                                  The Y value should be negative and probably larger than 5 just in case.

                                  Z-Bot CoreXY Build | Thingiverse Profile

                                  1 Reply Last reply Reply Quote 0
                                  • Phaedruxundefined
                                    Phaedrux Moderator
                                    last edited by

                                    Does homey by itself work properly?

                                    Z-Bot CoreXY Build | Thingiverse Profile

                                    1 Reply Last reply Reply Quote 0
                                    • twistedechosundefined
                                      twistedechos
                                      last edited by

                                      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

                                      1 Reply Last reply Reply Quote 0
                                      • Phaedruxundefined
                                        Phaedrux Moderator
                                        last edited by

                                        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

                                        Z-Bot CoreXY Build | Thingiverse Profile

                                        1 Reply Last reply Reply Quote 0
                                        • twistedechosundefined
                                          twistedechos
                                          last edited by

                                          next question how dose it know where the print bed is?

                                          1 Reply Last reply Reply Quote 0
                                          • twistedechosundefined
                                            twistedechos
                                            last edited by

                                            i cant figure it out i really just want to start printing agian

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Unless otherwise noted, all forum content is licensed under CC-BY-SA