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

    Newbie: New Install on Ender 5 Plus---Willing to PAY$$$

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    6
    141
    7.2k
    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.
    • Vetiundefined
      Veti
      last edited by

      G1 X-1.3000000000000007 Y1 F6000 ; go to first bed probe point and home Z

      replace that with

      G1 X50 Y50 F600

      when exactly does it try to move past the endstops?
      during the first move?

      shattyundefined 1 Reply Last reply Reply Quote 0
      • shattyundefined
        shatty @Veti
        last edited by

        @Veti Yes. I tried that setting and no good. Its random in which direction it goes to home and it just slams at the end of each axis.

        Vetiundefined 1 Reply Last reply Reply Quote 0
        • shattyundefined
          shatty
          last edited by

          ; homeall.g
          ; called to home all axes
          ;
          ; generated by RepRapFirmware Configuration Tool v3.1.4 on Sun Nov 15 2020 03:22:47 GMT-0500 (Eastern Standard Time)
          G91 ; relative positioning
          G1 H2 Z5 F6000 ; lift Z relative to current position
          G1 H1 X-355 Y-355 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
          G1 H2 X5 Y5 F6000 ; go back a few mm
          G1 H1 X-355 Y-355 F360 ; move slowly to X and Y axis endstops once more (second pass)
          G90 ; absolute positioning
          G1 X50 Y50 F600 ; go to first bed probe point and home Z
          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

          ; Configuration file for Duet WiFi (firmware version 3)
          ; executed by the firmware on start-up
          ;
          ; generated by RepRapFirmware Configuration Tool v3.1.4 on Sun Nov 15 2020 03:22:47 GMT-0500 (Eastern Standard Time)

          ; General preferences
          G90 ; send absolute coordinates...
          M83 ; ...but relative extruder moves
          M550 P"E5Plus" ; set printer name

          ; Network
          M551 P"xxxx" ; set password
          M552 S1 ; enable network
          M586 P0 S1 ; enable HTTP
          M586 P1 S0 ; disable FTP
          M586 P2 S0 ; disable Telnet

          ; Drives
          M569 P0 S1 ; physical drive 0 goes forwards
          M569 P1 S1 ; physical drive 1 goes forwards
          M569 P2 S0 ; physical drive 2 goes backwards
          M569 P3 S0 ; physical drive 3 goes backwards
          M584 X0 Y1 Z2 E3 ; set drive mapping
          M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
          M92 X80.00 Y80.00 Z800.00 E412.60 ; set steps per mm
          M566 X1200.00 Y1200.00 Z60.00 E300.00 ; set maximum instantaneous speed changes (mm/min)
          M203 X9000.00 Y9000.00 Z1200.00 E6000.00 ; set maximum speeds (mm/min)
          M201 X500.00 Y500.00 Z100.00 E5000.00 ; set accelerations (mm/s^2)
          M906 X800 Y800 Z1400 E1000 I50 ; set motor currents (mA) and motor idle factor in per cent
          M84 S30 ; Set idle timeout

          ; Axis Limits
          M208 X0 Y0 Z0 S1 ; set axis minima
          M208 X350 Y350 Z400 S0 ; set axis maxima

          ; Endstops
          M574 X1 S1 P"xstop" ; configure active-high endstop for low end on X via pin xstop
          M574 Y1 S1 P"ystop" ; configure active-high endstop for low end on Y via pin ystop
          M574 Z1 S2 ; configure Z-probe endstop for low end on Z

          ; Z-Probe
          M950 S0 C"exp.heater3" ; create servo pin 0 for BLTouch
          M558 P9 C"^zprobe.in" H5 F600 T6000 ; set Z probe type to bltouch and the dive height + speeds
          G31 P500 X16.3 Y14 Z1.7 ; set Z probe trigger value, offset and trigger height
          M557 X15:190 Y15:190 S20 ; define mesh grid

          ; Heaters
          M308 S0 P"bedtemp" Y"thermistor" T100000 B4092 ; configure sensor 0 as thermistor on pin bedtemp
          M950 H0 C"bedheat" T0 ; create bed heater output on bedheat and map it to sensor 0
          M307 H0 B1 S1.00 ; enable bang-bang mode for the bed heater and set PWM limit
          M140 H0 ; map heated bed to heater 0
          M143 H0 S110 ; set temperature limit for heater 0 to 110C
          M308 S1 P"e0temp" Y"thermistor" T100000 B4092 ; configure sensor 1 as thermistor on pin e0temp
          M950 H1 C"e0heat" T1 ; create nozzle heater output on e0heat and map it to sensor 1
          M307 H1 B0 S1.00 ; disable bang-bang mode for heater and set PWM limit
          M143 H1 S280 ; 280 deg max on hot end

          ; Fans
          M950 F0 C"fan0" Q500 ; create fan 0 on pin fan0 and set its frequency
          M106 P0 S1 H1 ; set fan 0 value. Thermostatic control is turned off
          M950 F1 C"fan1" Q500 ; create fan 1 on pin fan1 and set its frequency
          M106 P1 S1 H1 T45 ; set fan 1 value. Thermostatic control is turned on

          ; Tools
          M563 P0 D0 H1 F0 ; define tool 0
          G10 P0 X0 Y0 Z0 ; set tool 0 axis offsets
          G10 P0 R0 S0 ; set initial tool 0 active and standby temperatures to 0C

          ; Custom settings are not defined

          ; Miscellaneous
          M575 P1 S1 B57600 ; enable support for PanelDue

          1 Reply Last reply Reply Quote 0
          • Vetiundefined
            Veti @shatty
            last edited by Veti

            @shatty said in Newbie: New Install on Ender 5 Plus---Willing to PAY$$:

            . Its random in which direction it goes to home and it just slams at the end of each axis.

            i have never heard of this happening.

            let me get this straight.
            you home your printer. it moves to the right?
            you restart the printer it moves to the left?

            post the output of M119 when no endstop is pressed.
            post the output of M119 when only the enstop for the x axis is pressed

            shattyundefined 1 Reply Last reply Reply Quote 0
            • shattyundefined
              shatty @Veti
              last edited by

              @Veti
              When I turn it on, nothing moves unless i press the home button. There is no telling which direction it will go if i center the extruder in the middle of the area. Where am I supposed to set the hotend before I turn on the printer?

              Vetiundefined 1 Reply Last reply Reply Quote 0
              • Vetiundefined
                Veti @shatty
                last edited by

                @shatty
                please test the stepper motor direction using this
                https://duet3d.dozuki.com/Wiki/Choosing_and_connecting_stepper_motors#Section_Checking_connected_stepper_motors

                report for x y and z

                1 Reply Last reply Reply Quote 0
                • shattyundefined
                  shatty
                  last edited by shatty

                  Heres a video of what it does....

                  https://drive.google.com/file/d/1IeBbFe_YLu9XSz0GbuNmigxwDfcq57Ay/view?usp=sharing

                  1 Reply Last reply Reply Quote 0
                  • Vetiundefined
                    Veti
                    last edited by

                    please do the testing from the webui to rule out a bad touch screen connection.

                    shattyundefined 1 Reply Last reply Reply Quote 0
                    • Vetiundefined
                      Veti
                      last edited by

                      btw what is that strange sound at the start of the homing?

                      shattyundefined 1 Reply Last reply Reply Quote 0
                      • shattyundefined
                        shatty @Veti
                        last edited by

                        @Veti said in Newbie: New Install on Ender 5 Plus---Willing to PAY$$:

                        please do the testing from the webui to rule out a bad touch screen connection.

                        TS is fine.

                        Anyways....hitting any positive value will move each toward the endstop switch...The Z is not right..Looks like they are fighting each other

                        Vetiundefined 2 Replies Last reply Reply Quote 0
                        • shattyundefined
                          shatty @Veti
                          last edited by

                          @Veti said in Newbie: New Install on Ender 5 Plus---Willing to PAY$$:

                          btw what is that strange sound at the start of the homing?

                          The Z axis motors are fighting each other.

                          Vetiundefined 1 Reply Last reply Reply Quote 0
                          • Vetiundefined
                            Veti @shatty
                            last edited by

                            @shatty said in Newbie: New Install on Ender 5 Plus---Willing to PAY$$:

                            Anyways....hitting any positive value will move each toward the endstop switch...

                            that would indicate that your motors are turning in the wrong direction.

                            shattyundefined 1 Reply Last reply Reply Quote 0
                            • shattyundefined
                              shatty @Veti
                              last edited by

                              @Veti
                              OK Let me fix that.

                              1 Reply Last reply Reply Quote 0
                              • Vetiundefined
                                Veti @shatty
                                last edited by

                                @shatty said in Newbie: New Install on Ender 5 Plus---Willing to PAY$$:

                                The Z axis motors are fighting each other.

                                that means on of your motors is wired in the opposite direction

                                1 Reply Last reply Reply Quote 0
                                • Vetiundefined
                                  Veti @shatty
                                  last edited by

                                  @shatty said in Newbie: New Install on Ender 5 Plus---Willing to PAY$$:

                                  TS is fine.

                                  i beg to differ. The bad command 55 at the end is an indication.

                                  shattyundefined 1 Reply Last reply Reply Quote 0
                                  • shattyundefined
                                    shatty @Veti
                                    last edited by

                                    @Veti Thats because I hit stop

                                    Not the motors are moving away from endstops with hitting the positive values. Z still fighting each other. They are in series config because there are 2 on 1 driver

                                    Vetiundefined 1 Reply Last reply Reply Quote 0
                                    • shattyundefined
                                      shatty
                                      last edited by

                                      Paneldue5i is connected with ribbon cable only. How can it be wrong?

                                      1 Reply Last reply Reply Quote 0
                                      • Vetiundefined
                                        Veti @shatty
                                        last edited by Veti

                                        @shatty said in Newbie: New Install on Ender 5 Plus---Willing to PAY$$:

                                        Z still fighting each other.

                                        that mean you have to reverse the wiring of one of your stepper motors

                                        shattyundefined 1 Reply Last reply Reply Quote 0
                                        • shattyundefined
                                          shatty @Veti
                                          last edited by

                                          @Veti
                                          OK. TY. Hopefully I can gain progress now.

                                          shattyundefined 1 Reply Last reply Reply Quote 0
                                          • shattyundefined
                                            shatty @shatty
                                            last edited by

                                            @shatty

                                            Z wired right. Only thing is...small little problem....THE WIRE IS CUT!!! THRU 3 OF THE 4 WIRES ON ONE OF THE Z STEPPERS!!!!!

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