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

    Duet - no response back

    Scheduled Pinned Locked Moved
    General Discussion
    2
    20
    1.9k
    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.
    • dc42undefined
      dc42 administrators
      last edited by

      It sounds that you are still missing some S2 modifiers in your homez.g, homey.g and homeall.g files. If you are using a Z probe to home Z then you need to home X and Y first.

      Duet WiFi hardware designer and firmware engineer
      Please do not ask me for Duet support via PM or email, use the forum
      http://www.escher3d.com, https://miscsolutions.wordpress.com

      1 Reply Last reply Reply Quote 0
      • mlbuxbaumundefined
        mlbuxbaum
        last edited by

        ; homeall.g
        ; called to home all axes
        ;
        ; generated by RepRapFirmware Configuration Tool on Fri Feb 16 2018 11:11:03 GMT-0500 (Eastern Standard Time)
        G91 ; relative positioning
        G1 S2 Z5 F6000 ; lift Z relative to current position
        G1 S1 X-305 Y-305 F1800 ; move quickly to X or Y endstop and stop there (first pass)
        G1 S1 X-305 ; home X axis
        G1 S1 Y-305 ; home Y axis
        G1 X5 Y5 F6000 ; go back a few mm
        G1 S1 X-305 F360 ; move slowly to X axis endstop once more (second pass)
        G1 S1 Y-305 ; then move slowly to Y axis endstop
        G90 ; absolute positioning
        G1 X-13 Y3 F6000 ; go to first bed probe point and home Z
        G30 ; home Z by probing the bed
        ;G1 Z5 F100 ; uncomment this line to lift the nozzle after homing

        1 Reply Last reply Reply Quote 0
        • mlbuxbaumundefined
          mlbuxbaum
          last edited by

          ; homex.g
          ; called to home the X axis
          ;
          ; generated by RepRapFirmware Configuration Tool on Fri Feb 16 2018 11:11:03 GMT-0500 (Eastern Standard Time)
          G91 ; relative positioning
          G1 S2 Z5 F6000 ; lift Z relative to current position
          G1 S1 X-305 F1800 ; move quickly to X axis endstop and stop there (first pass)
          G1 X5 F6000 ; go back a few mm
          G1 S1 X-305 F360 ; move slowly to X axis endstop once more (second pass)
          G1 Z-5 F6000 ; lower Z again
          G90 ; absolute positioning

          1 Reply Last reply Reply Quote 0
          • mlbuxbaumundefined
            mlbuxbaum
            last edited by

            ; homey.g
            ; called to home the Y axis
            ;
            ; generated by RepRapFirmware Configuration Tool on Fri Feb 16 2018 11:11:03 GMT-0500 (Eastern Standard Time)
            G91 ; relative positioning
            G1 S2 Z5 F6000 ; lift Z relative to current position
            G1 S1 Y-305 F1800 ; move quickly to Y axis endstop and stop there (first pass)
            G1 Y5 F6000 ; go back a few mm
            G1 S1 Y-305 F360 ; move slowly to Y axis endstop once more (second pass)
            G1 Z-5 F6000 ; lower Z again
            G90 ; absolute positioning

            1 Reply Last reply Reply Quote 0
            • mlbuxbaumundefined
              mlbuxbaum
              last edited by

              ; homez.g
              ; called to home the Z axis
              ;
              ; generated by RepRapFirmware Configuration Tool on Fri Feb 16 2018 11:11:03 GMT-0500 (Eastern Standard Time)
              G91 ; relative positioning
              G1 Z5 F6000 ; lift Z relative to current position
              G90 ; absolute positioning
              G1 X-13 Y3 F6000 ; 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 F100 ; lift Z relative to current position
              ;G90 ; absolute positioning

              1 Reply Last reply Reply Quote 0
              • dc42undefined
                dc42 administrators
                last edited by

                homeall.g looks ok to me.

                homex.g needs S2 added to line "G1 Z-5 F6000" because Z is not necessarily homed at that point. Same for homey.g.

                homez.g looks OK, but you need to home X and Y before running homez.

                Duet WiFi hardware designer and firmware engineer
                Please do not ask me for Duet support via PM or email, use the forum
                http://www.escher3d.com, https://miscsolutions.wordpress.com

                1 Reply Last reply Reply Quote 0
                • mlbuxbaumundefined
                  mlbuxbaum
                  last edited by

                  thank you

                  1 Reply Last reply Reply Quote 0
                  • mlbuxbaumundefined
                    mlbuxbaum
                    last edited by

                    Added the S2 command to those files….
                    homed x - no error
                    homed y - no error
                    homed z and....

                    G28 Z

                    Error: G0/G1: insufficient axes homed

                    however when I use Home All
                    no errors and homes great

                    I added S2 to the homez file and seems to work fine now

                    1 Reply Last reply Reply Quote 0
                    • mlbuxbaumundefined
                      mlbuxbaum
                      last edited by

                      new issue….
                      when i load an .stl file and try to print, the connection terminates.

                      1 Reply Last reply Reply Quote 0
                      • dc42undefined
                        dc42 administrators
                        last edited by

                        You can't print an STL file directly, you need to slice it first and then upload and print the .gcode file that the slicer generates.

                        Duet WiFi hardware designer and firmware engineer
                        Please do not ask me for Duet support via PM or email, use the forum
                        http://www.escher3d.com, https://miscsolutions.wordpress.com

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