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

    T1 moves in X without being asked.

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    7
    16
    561
    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.
    • terbospaghettiundefined
      terbospaghetti @Phaedrux
      last edited by

      @phaedrux

      No errors come back from the m98 command, I get the following response:

      m98 P"config.g"
      
      HTTP is enabled on port 80
      FTP is disabled
      TELNET is disabled
      

      homeall

      ; homeall.g
      ; called to home all axes
      ;
      ; generated by RepRapFirmware Configuration Tool v3.2.3 on Tue Jun 08 2021 18:16:58 GMT-0500 (Central Daylight Time)
      G91                     		; relative positioning
      G1 H2 Z5 F12000       			; lift Z relative to current position
      G1 H1 X-300 U300 Y-235 F5000 	; move quickly to X, U, and Y axis endstops and stop there (first pass)
      G1 H2 X5 U-5 Y5 F5000      	; go back a few mm on each axis
      G1 H1 X-300 U300 Y-235 F1000  	; move slowly to X, U, and Y axis endstops once more (second pass)
      G90 							;back to absolute mode
      G1 X120 Y82 F5000 				; put head over the centre of the bed, or wherever you want to probe
      G30 							; lower head, stop when probe triggered and set Z to trigger height
      G32					        	; run bed.g to level Z axis leadscrews
      G91
      G1 H1 X-300 Y-235 F5000 	; move quickly to X, U, and Y axis endstops and stop there (first pass)
      G1 H2 X5 Y5 F5000      	; go back a few mm on each axis
      G1 H1 X-300 U300 Y-235 F1000  	; move slowly to X, U, and Y axis endstops once more (second pass)
      

      homeu

      
      Tenlog Hands 2+
      m98 P"config.g"
      Status
      Idle
      Mode: FFF
      Tool Position
      X
      -35.0
      Y
      101.5
      Z
      24.73
      U
      100.0
      Extruder Drives
      Drive 0
      0.0
      Drive 1
      0.0
      Speeds
      Requested Speed
      0 mm/s
      Top Speed
      0 mm/s
      Sensors
      Vin
      24.1 V
      V12
      12.0 V
      MCU Temperature
      41.7 °C
      Z-Probe
      0
       Tools
       Extra
       Control Heaters
      Tool	Heater	Current	Active	Standby
      LEFT
      T0 - Load Filament	Heater 1
      off	74.0 °C	
      220
      0
      RIGHT
      T1 - Load Filament	Heater 2
      off	72.6 °C	
      220
      0
      DUPLICATE
      T2	Heater 1
      off	74.0 °C	
      220
      0
      Heater 2
      off	72.6 °C	
      220
      0
      Bed	Heater 0
      off	23.5 °C	
      0
      0
      Temperature Chart
      System Directory
      0:/sys/homeu.g
      ; homeu.g
      ; called to home the U axis
      ;
      ; generated by RepRapFirmware Configuration Tool v3.2.3 on Tue Jun 08 2021 18:16:58 GMT-0500 (Central Daylight Time)
      G91               ; relative positioning
      G1 H2 Z5 F5000  ; lift Z relative to current position
      G1 H1 U300 F5000 ; move quickly to X axis endstop and stop there (first pass)
      G1 H2 U-5 F5000   ; go back a few mm
      G1 H1 U300 F1000  ; move slowly to X axis endstop once more (second pass)
      G1 H2 Z-5 F5000 ; lower Z again
      G90               ; absolute positioning
      

      homex

      ; homex.g
      ; called to home the X axis
      ;
      ; generated by RepRapFirmware Configuration Tool v3.2.3 on Tue Jun 08 2021 18:16:58 GMT-0500 (Central Daylight Time)
      G91               ; relative positioning
      G1 H2 Z5 F24000  ; lift Z relative to current position
      G1 H1 X-300 F5000 ; move quickly to X axis endstop and stop there (first pass)
      G1 H2 X5 F5000   ; go back a few mm
      G1 H1 X-300 F1000  ; move slowly to X axis endstop once more (second pass)
      G1 H2 Z-5 F24000 ; lower Z again
      G90               ; absolute positioning
      

      homey

      ; homey.g
      ; called to home the Y axis
      ;
      ; generated by RepRapFirmware Configuration Tool v3.2.3 on Tue Jun 08 2021 18:16:58 GMT-0500 (Central Daylight Time)
      G91               ; relative positioning
      G1 H2 Z5 F25000  ; lift Z relative to current position
      G1 H1 Y-235 F5000 ; move quickly to Y axis endstop and stop there (first pass)
      G1 H2 Y5 F5000   ; go back a few mm
      G1 H1 Y-235 F1000  ; move slowly to Y axis endstop once more (second pass)
      G1 H2 Z-5 F25000 ; lower Z again
      G90               ; absolute positioning
      

      homez

      G91 ; relative mode
      G1 H2 Z5 F5000 ; raise head 15mm to ensure it is above the Z probe trigger height
      G90 ; back to absolute mode
      G1 H1 U300 F5000  	; move U CARRIAGE out of the way
      G1 X120 Y110 F5000 ; put head over the centre of the bed, or wherever you want to probe
      G30 ; lower head, stop when probe triggered and set Z to trigger height
      
      fcwiltundefined gloomyandyundefined 2 Replies Last reply Reply Quote 0
      • fcwiltundefined
        fcwilt @terbospaghetti
        last edited by

        @terbospaghetti

        homeall - the last 3 lines seem odd

        homeu - seriously odd

        Also if you don't already do it your bed.g file after doing a leveling the bed you need to set the Z=0 datum again with G30.

        Frederick

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

        terbospaghettiundefined 1 Reply Last reply Reply Quote 0
        • terbospaghettiundefined
          terbospaghetti @fcwilt
          last edited by

          @fcwilt said in T1 moves in X without being asked.:

          @terbospaghetti

          homeall - the last 3 lines seem odd

          homeu - seriously odd

          Also if you don't already do it your bed.g file after doing a leveling the bed you need to set the Z=0 datum again with G30.

          Frederick

          Hey Frederick, none of that is relevant to the question being asked here. Do you have anything of value to add?

          I've already stated that the machine is a work in progress. If you don't have anything helpful to add, maybe don't post anything in a thread next time.

          alankilianundefined fcwiltundefined 2 Replies Last reply Reply Quote -1
          • alankilianundefined
            alankilian @terbospaghetti
            last edited by alankilian

            @terbospaghetti

            I get that it's sometimes frustrating to receive help from forum volunteers that's not <specifically> what you are asking for.

            Please accept the free help even if it's not perfect.
            This forum runs on helpful volunteers as well as professionals. We need the volunteers to continue helping this community.

            It's quite fine to ignore helpyness you aren't interested in receiving, but please do not encourage people not to post. It makes everyone less likely to try and help you or the next person in line with a question.

            I do not know anything about your printer, so I can't be helpful for this problem, but maybe I can help you another time in the future.

            SeemeCNC Rostock Max V3 converted to V3.2 with a Duet2 Ethernet Firmware 3.2 and SE300

            terbospaghettiundefined 1 Reply Last reply Reply Quote 1
            • terbospaghettiundefined
              terbospaghetti @alankilian
              last edited by

              @alankilian consider this constructive criticism in that spirit.

              Help that didn't get asked for isn't help at all. Quite the opposite in fact.

              And I'd repeat my criticism for your post, do you have anything of value to add here? If not, maybe the forum would be best served by your going help someone with something that you understand?

              1 Reply Last reply Reply Quote -1
              • gloomyandyundefined
                gloomyandy @terbospaghetti
                last edited by

                @terbospaghetti Is there a line missing from your homeall.g file? If not it looks like it will leave you set in relative mode, which may not be what you intend. I doubt if that will be causing your strange movement problem though. You may want to connect via USB and enable gcode debug by using M111 P3 S1 then run your test, the output may provide a clue as to what is going on.

                1 Reply Last reply Reply Quote 0
                • fcwiltundefined
                  fcwilt @terbospaghetti
                  last edited by

                  @terbospaghetti said in T1 moves in X without being asked.:

                  I've already stated that the machine is a work in progress. If you don't have anything helpful to add, maybe don't post anything in a thread next time.

                  What a wonderful attitude. I will indeed refrain from intruding.

                  I will just add this one thought. My printers all work.

                  Goodbye

                  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
                  • Phaedruxundefined
                    Phaedrux Moderator
                    last edited by

                    I was going to put some time and effort into going over your files closely, but your attitude has dampened my enthusiasm. I'd rather spend some time with my family. Maybe tomorrow if you can manage to show some contrition between now and then. I don't want to leave you with nothing though, so have you seen this? https://duet3d.dozuki.com/Wiki/ConfiguringMultipleIndependentXcarriagesCartesian

                    Z-Bot CoreXY Build | Thingiverse Profile

                    terbospaghettiundefined 1 Reply Last reply Reply Quote 1
                    • mikeabuilderundefined
                      mikeabuilder
                      last edited by mikeabuilder

                      I'll risk the flames... and this is a guess. What you describe is one axis (U) moving when you are commanding a different axis (Z) to move. One possibility is that you have a motor assignment saved in firmware. M584 does not eliminate previous mappings. To test, in your config.g, add an M18 to clear all motor assignments (M18 X Y Z A B C D U V W ). This needs to be before the M584 command. I have this in my config.g as a matter of personal policy.

                      1 Reply Last reply Reply Quote 1
                      • oliofundefined
                        oliof
                        last edited by oliof

                        @terbospaghetti said in T1 moves in X without being asked.:

                        G10 P1 X0.1 Y-0.6 Z0.265 ; set tool 1 axis offsets

                        This line is sufficiently different to my IDEX configuration that I believe your X offset on T1 may be related to this issue. On my printer with an X span of 235 mm the minimum distance between the nozzles is 58.5mm to avoid them crashing into each other, so my X offset is just that (Y offset is unrelated and Z offset is 0 because I can adjust the height of the hotend):

                        G10 P1 X58.5 Y-14 Z0 R0 S0 
                        

                        This is a pure shot in the dark, but maybe it helps you figure out what's oing on.

                        <>RatRig V-Minion Fly Super5Pro RRF<> V-Core 3.1 IDEX k*****r <> RatRig V-Minion SKR 2 Marlin<>

                        1 Reply Last reply Reply Quote 0
                        • terbospaghettiundefined
                          terbospaghetti @Phaedrux
                          last edited by

                          @fcwilt said in T1 moves in X without being asked.:

                          @terbospaghetti said in T1 moves in X without being asked.:

                          I've already stated that the machine is a work in progress. If you don't have anything helpful to add, maybe don't post anything in a thread next time.

                          What a wonderful attitude. I will indeed refrain from intruding.

                          I will just add this one thought. My printers all work.

                          Goodbye

                          This kind of holier-than-thou attitude is exactly why I hesitate to come near this forum in the first place. You don't wanna come near an issue unless you get the chance to pick at any little detail.

                          All of you go fuck yourselves, I'm glad I bought clones.

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