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

    Ft-5/Duet wifi/Cura Prints not homing properly, Help!

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    3
    22
    1.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.
    • starpowersolaryahoo.comundefined
      starpowersolaryahoo.com
      last edited by

      Sorry, I meant "printrun" not pronterface.

      1 Reply Last reply Reply Quote 0
      • stewwyundefined
        stewwy
        last edited by

        this might help as I have a cartesian AM8
        ; config.g

        ; General preferences
        M564 H0 ;comment out after setup allows move past end-stops
        ; Network*****Access point is configured manually via M587
        M550 PPetra's-Little Toy ; Set machine name
        M552 S1 ; Enable network
        M586 P0 S1 ; Enable HTTP
        M586 P1 S0 ; Disable FTP
        M586 P2 S0 ; Disable Telnet
        M555 P2 ; Set firmware compatibility to look like Marlin output

        ; Drives
        M569 P0 S1 ; Drive 0 goes forwards
        M569 P1 S1 ; Drive 1 goes forwards
        M569 P2 S0 ; Drive 2 goes backwards
        M569 P3 S0 ; Drive 3 goes backwards for titan
        M350 X16 Y16 Z16 E16 I1 ; Configure micro-stepping with interpolation
        M92 X100 Y100 Z400 E437 ; Set steps per mm ( 99.5 for standard extruder)
        M566 X1000 Y1000 Z320 E300 ; Set maximum instantaneous speed changes (mm/min) jerk settings. was 600 600 40
        M203 X18000 Y18000 Z800 E3000 ; Maximum speeds (mm/min)
        M201 X2000 Y2000 Z320 E10000 ; Set accelerations (mm/s^2) from X480 Y240 Z250 E1000
        M204 P400 T1000 ; Lower accelerations when printing though
        M906 X600 Y600 Z600 E700 I30 ; Set motor currents (mA) and motor idle factor in per cent
        M84 S30 ; Set idle timeout
        G21 ; Work in millimeters
        G90 ; Send absolute coordinates...
        M83 ; ...but relative extruder moves

        ; Axis Limits
        M208 X-15 Y-20 Z0 S1 ; Set axis minima
        M208 X275 Y235 Z280 S0 ; Set axis maxima

        ; Endstops and set inductive sensor
        ;M307 H7 A-1 C-1 D-1 ; Disable the 7th Heater to free up PWM channel 5 on the Duex board.(for bltouch)
        M574 X1 Y2 S0 ; X home to min. Y home to max. N0pen micro-switches.
        M574 Z1 S2 ; Define Z to use Probe. Home to Min.
        M558 P5 H2 F200 T6000 X0 Y0 Z1 I1 ; Set Z probe type/mode 5. Inverted output I1 Not using on XY, but using it on Z. F200 dive speed T6000 travel speed
        G31 P350 X30 Y2 Z0.40 ; Z probe trigger value, offset in relation to nozzle. And trigger height adjustment
        M557 X5:246 Y20:210 S20 ; Define mesh grid at edge

        ; Heaters
        M307 H0 A148.7 C890.0 D1.2 S1.00 V13.9 B0 ; AUTO-TUNE bed
        M307 H1 A723.4 C274.7 D6.1 S1.00 V13.8 B0 ; 2nd PID tune PT1000 Sensor
        M305 P0 T100000 B4725 C7.060000e-8 R4700 ; Set thermistor + ADC parameters for heater 0 BED
        M143 H0 S120 ; Set temperature limit for heater 0 to 120C
        M305 P1 X501 ; Configure thermocouple for heater 1 PT1000
        M143 H1 S280 ; Set temperature limit for heater 1 to 280C

        ; Fans
        M106 P0 S0 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
        M106 P1 S255 I0 F500 H1 T45 ; Set fan 1 value, PWM signal inversion and frequency. Thermostatic control is turned on
        M106 P2 S1 I0 F500 H1 T45 ; Set fan 2 value, PWM signal inversion and frequency. Thermostatic control is turned on

        ; Tools
        M563 P0 S"Hotend" D0 H1 ; 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

        ; Pressure Advance
        M572 D0 S0.25

        ; Power Loss
        M911 S12 R13 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; Set voltage thresholds and actions to run on power loss

        ; Custom settings are not configured

        and my homeall.g

        ; homeall.g
        ; called to home all axes
        ;
        ; generated by ME
        G91 ; relative positioning
        G1 Z5 F6000 S2 ; lift Z relative to current position
        G1 S1 X-280 Y280 F6000 ; move quickly to X and Y axis endstops and stop there (first pass)
        G1 X5 Y-5 F2000 ; go back a few mm
        G1 S1 X-205 Y225 F360 ; move slowly to X and Y axis endstops once more (second pass)
        G90 ; absolute positioning
        G1 X110 Y118 F6000 ; go to bed center point and
        G30 ; home Z by probing the bed

        ; Uncomment the following lines to lift Z after probing
        ;G91 ; relative positioning
        ;G1 S2 Z5 F100 ; lift Z relative to current position
        ;G90 ; absolute positioning

        and my start code from s3d

        G30 ; home all axes
        G1 X30 Y30 Z0.2 F3000 ; get ready to prime
        G92 E0 ; reset extrusion distance
        G29 S1
        G1 X180 E20 F800 ; prime nozzle
        M83

        hope this helps

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

          Are you printing from the DWC by uploading the gcode to the SD card or are you printing via usb?

          How do you have the bed setup in Cura?

          Z-Bot CoreXY Build | Thingiverse Profile

          1 Reply Last reply Reply Quote 0
          • starpowersolaryahoo.comundefined
            starpowersolaryahoo.com
            last edited by

            0_1539890422189_Screen Shot 2018-10-18 at 3.16.12 PM.png

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

              @starpowersolaryahoo-com not sure if this will help you but you may want to change to reprapfirmware gcode flavour

              Z-Bot CoreXY Build | Thingiverse Profile

              starpowersolaryahoo.comundefined 1 Reply Last reply Reply Quote 0
              • stewwyundefined
                stewwy
                last edited by

                Aaa...nd reading that I just realized I forgot to comment out the first M305 when I put in a PT1000 😖

                1 Reply Last reply Reply Quote 0
                • starpowersolaryahoo.comundefined
                  starpowersolaryahoo.com @Phaedrux
                  last edited by

                  @phaedrux It made no difference, same result. Im dead in the water here.

                  1 Reply Last reply Reply Quote 0
                  • starpowersolaryahoo.comundefined
                    starpowersolaryahoo.com @stewwy
                    last edited by

                    @stewwy We have different machines, but Ill try your settings. Thx

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

                      See my additional questions from a few posts up.

                      Z-Bot CoreXY Build | Thingiverse Profile

                      1 Reply Last reply Reply Quote 0
                      • starpowersolaryahoo.comundefined
                        starpowersolaryahoo.com
                        last edited by

                        When sending a print, the XY motors start moving and skipping steps, then the they move to the wrong location and begin printing. Ive included a link to a youtube video that shows their behavior, https://youtu.be/uHj62Tgl_jw. Anyone have any idea of whats going on? Again the printer homes correctly but reacts like this when attempting to print.

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

                          It looks like you have the origin set to the rear right of the printer, which is opposite of what it normally is.

                          Check this out and see if it makes sense.

                          https://drmrehorst.blogspot.com/2017/08/setting-up-3d-printers-origin.html

                          Z-Bot CoreXY Build | Thingiverse Profile

                          1 Reply Last reply Reply Quote 0
                          • starpowersolaryahoo.comundefined
                            starpowersolaryahoo.com
                            last edited by

                            Phaedrux, that did the trick! I studied the info you linked and learned how printers and slicers align the bed and everything on it. I incorporated the knowledge and it made all the difference. A million thanks!

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