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

    I could use some help

    Scheduled Pinned Locked Moved
    Duet Hardware and wiring
    11
    682
    64.0k
    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.
    • fcwiltundefined
      fcwilt @A Former User
      last edited by

      @mac said in I could use some help:

      @droftarts hey's baaaaaaaaaccccccccckkkkkkk

      I just moved the white wire on the 5 pin io2 connector from io2_out to io2_in, The green wire is still in the center of the connector / connected to GND.

      Well that certainly should make a difference.

      Please run the M119 tests with the Z endstop switch pressed and not pressed.

      Frederick

      Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

      1 Reply Last reply Reply Quote 0
      • A Former User?
        A Former User @A Former User
        last edited by

        @droftarts @fcwilt M119 reported all of the axis are NOT STOPPED, WAIT A MINUTE!!!!!

        6/27/2022, 9:28:48 AM	M119
        Endstops - X: not stopped, Y: not stopped, Z: at min stop, Z probe: not stopped
        6/27/2022, 9:28:11 AM	M119
        Endstops - X: not stopped, Y: not stopped, Z: not stopped, Z probe: not stopped
        

        Look at the timecode, between :11 and :48 Z changed!

        A Former User? fcwiltundefined 2 Replies Last reply Reply Quote 0
        • A Former User?
          A Former User @A Former User
          last edited by

          @droftarts @fcwilt I knew there was a reason I named this machine Frankenstein's Cinderella.

          A Former User? 1 Reply Last reply Reply Quote 0
          • fcwiltundefined
            fcwilt @A Former User
            last edited by

            @mac said in I could use some help:

            @droftarts @fcwilt M119 reported all of the axis are NOT STOPPED, WAIT A MINUTE!!!!!

            6/27/2022, 9:28:48 AM	M119
            Endstops - X: not stopped, Y: not stopped, Z: at min stop, Z probe: not stopped
            6/27/2022, 9:28:11 AM	M119
            Endstops - X: not stopped, Y: not stopped, Z: not stopped, Z probe: not stopped
            

            Look at the timecode, between :11 and :48 Z changed!

            So it seems like the Z endstop switch is now working?

            Frederick

            Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

            1 Reply Last reply Reply Quote 0
            • A Former User?
              A Former User @A Former User
              last edited by

              @droftarts @fcwilt I turned off the machine, then turned it back on. M119 reports that Z is at min stop.

              My finger isn't anywhere near it.

              But, when I depress Z, and send M119, it says Z NOT STOPPED.

              A Former User? 1 Reply Last reply Reply Quote 0
              • A Former User?
                A Former User @A Former User
                last edited by

                @droftarts @fcwilt Z needs to be reversed, doesn't it.

                fcwiltundefined 1 Reply Last reply Reply Quote 0
                • fcwiltundefined
                  fcwilt @A Former User
                  last edited by

                  @mac said in I could use some help:

                  @droftarts @fcwilt Z needs to be reversed, doesn't it.

                  Just edit the M574 line for the Z endstop and add the ! character, save, re-boot and re-test with M119.

                  You see what X and Y endstops do.

                  You need to get Z doing the same.

                  Frederick

                  Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                  A Former User? 1 Reply Last reply Reply Quote 0
                  • A Former User?
                    A Former User @fcwilt
                    last edited by

                    @fcwilt @droftarts FREAKIN' SUCCESS!

                    With all of the endstops up, all of them are off, with Y endstop depressed, it is at min stop. with Z depressed, it is at min stop, and with X depressed, it is at MIN STOP!

                    A Former User? fcwiltundefined 2 Replies Last reply Reply Quote 0
                    • A Former User?
                      A Former User @A Former User
                      last edited by

                      @droftarts @fcwilt I wonder where that puts us?

                      1 Reply Last reply Reply Quote 0
                      • fcwiltundefined
                        fcwilt @A Former User
                        last edited by

                        @mac said in I could use some help:

                        @fcwilt @droftarts FREAKIN' SUCCESS!

                        With all of the endstops up, all of them are off, with Y endstop depressed, it is at min stop. with Z depressed, it is at min stop, and with X depressed, it is at MIN STOP!

                        Congrats.

                        Now that you know the endstops are working you can proceed to fine tune your homing code.

                        Because you have a Z endstop you can start with that.

                        One Z is homed then homing X and Y is a piece of cake.

                        How about doing one at a time.

                        Please post your Z homing code which should be in homeZ.g

                        Frederick

                        Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                        A Former User? 1 Reply Last reply Reply Quote 0
                        • A Former User?
                          A Former User @fcwilt
                          last edited by

                          @fcwilt

                          ; homez.g
                          ; called to home the Z axis
                          ;
                          ; generated by RepRapFirmware Configuration Tool v3.3.10 on Mon Jun 27 2022 06:45:01 GMT-0700 (Pacific Daylight Time)
                          G91                      ; relative positioning
                          G1 H2 Z5 F3600           ; lift Z relative to current position
                          G90                      ; absolute positioning
                          G1 X-10.875 Y4.375 F3600 ; go to first probe point
                          G30                      ; home Z by probing the bed
                          
                          ; Uncomment the following lines to lift Z after probing
                          ;G91                     ; relative positioning
                          ;G1 Z5 F60               ; lift Z relative to current position
                          ;G90                     ; absolute positioning
                          
                          
                          
                          fcwiltundefined 1 Reply Last reply Reply Quote 0
                          • fcwiltundefined
                            fcwilt @A Former User
                            last edited by fcwilt

                            @mac

                            OK that is code for homing with a Z probe.

                            Now that you have a working Z endstop you can use simpler code.

                            Something like:

                            G91               ; relative movements
                            G1 H1 Z-250 F3600 ; fast move toward Z endstop
                            G1 Z10            ; backup off a bit
                            G1 H1 Z-15 F360   ; slow move toward Z endstop
                            
                            G90               ; absolute movements
                            G1 Z10 F3600      ; move to 10mm off the bed to allow X and Y movements
                            

                            Frederick

                            Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                            A Former User? 1 Reply Last reply Reply Quote 0
                            • A Former User?
                              A Former User @fcwilt
                              last edited by

                              @fcwilt so you're saying I can copy and paste your suggestion into the homez.g, correct?

                              fcwiltundefined 1 Reply Last reply Reply Quote 0
                              • fcwiltundefined
                                fcwilt @A Former User
                                last edited by

                                @mac said in I could use some help:

                                @fcwilt so you're saying I can copy and paste your suggestion into the homez.g, correct?

                                As long as you make sure none of the existing code is there.

                                Or you can rename the existing file if you want to save it.

                                And then create a new homeZ.g file and paste what I posted into it.

                                Frederick

                                Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                                A Former User? 1 Reply Last reply Reply Quote 0
                                • A Former User?
                                  A Former User @fcwilt
                                  last edited by

                                  @fcwilt So, I copy what's there from G91 to G30, delete that, then copy your code to that space to replace what was there, correct?

                                  Doing that preserves the first 4 lines of code, and the last 6 lines as well.

                                  fcwiltundefined 1 Reply Last reply Reply Quote 0
                                  • fcwiltundefined
                                    fcwilt @A Former User
                                    last edited by

                                    @mac said in I could use some help:

                                    @fcwilt So, I copy what's there from G91 to G30, delete that, then copy your code to that space to replace what was there, correct?

                                    Doing that preserves the first 4 lines of code, and the last 6 lines as well.

                                    Well if you wish to preserve those 2 or 3 first lines, that's fine.

                                    But you don't need any code other than what I posted.

                                    Frederick

                                    Printers: a E3D MS/TC setup and a RatRig Hybrid. Using Duet 3 hardware running 3.4.6

                                    A Former User? 1 Reply Last reply Reply Quote 0
                                    • A Former User?
                                      A Former User @fcwilt
                                      last edited by

                                      @fcwilt I just concerned that if I delete everything, then paste your code into that blank space, I'll loose the ; homez.g (header)?

                                      It's not that I don't trust you, I've just never done any coding.

                                      A Former User? fcwiltundefined 2 Replies Last reply Reply Quote 0
                                      • A Former User?
                                        A Former User @A Former User
                                        last edited by

                                        @fcwilt okay, done

                                        A Former User? 1 Reply Last reply Reply Quote 0
                                        • A Former User?
                                          A Former User @A Former User
                                          last edited by

                                          @fcwilt on to Y, X?

                                          A Former User? 1 Reply Last reply Reply Quote 0
                                          • A Former User?
                                            A Former User @A Former User
                                            last edited by

                                            @fcwilt or should we test Z?

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