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

    How Do I Calibrate My Titan Extruder and Test Print?

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    11
    115
    27.7k
    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.
    • AaronGreenundefined
      AaronGreen
      last edited by

      @deckingman

      Just wanted to say thanks for a great write-up on the hot end issue. It's been this long since I've touched my printer because I had the whole Christmas break, back into work, then moved house, and frankly I just needed a break from the printer after calibrating for a whole year straight.

      Every time I introduce a better part, it takes a bit of fiddling around and incurs a few new issues. Introducing the Duet was a big change, followed by a proper hot end. The funny thing about the clone was how well it worked in any condition, but it gave me very little know-how about the science you mentioned.

      For now, I just need to go in for another calibration and see if I can get it working again. It's been heating the bed up to scorching temperatures on start up, with no input, which is a new issue. And I never fixed the issue with the printer sliding across the print early in the peace, then straightening up after 50 layers or so. There's no explanation how it can slip consistently at the beginning, and go straight up later. It's not a mechanical issue, so I'm stumped.

      1 Reply Last reply Reply Quote 0
      • AaronGreenundefined
        AaronGreen
        last edited by

        Error since updating to Firmware 1.21:

        G28
        Error: G0/G1: insufficient axes homed

        1 Reply Last reply Reply Quote 0
        • DocTruckerundefined
          DocTrucker
          last edited by

          Have you already seen the release notes about adding "S2" to moves before an axis is homed?

          Running 3 P3Steel with Duet 2. Duet 3 on the shelf looking for a suitable machine. One first generation Duet in a Logo/Turtle style robot!

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

            @AaronGreen:

            Error since updating to Firmware 1.21:

            G28
            Error: G0/G1: insufficient axes homed

            You're probably trying to move an axis before it's homed. Probably raising the Z axis.

            From the 1.21 upgrade notes.

            On Cartesian and CoreXY printers, normal G0 and G1 moves are no longer allowed before the corresponding axes have been homed. In particular, if your homex.g, homey.g and homeall.g files raise Z a little at the start and lower it at the end, you will need to add the S2 parameter to those G1 Z moves. Otherwise the G1 Z move will be refused unless Z has already been homed and the homing macro will be terminated.

            Z-Bot CoreXY Build | Thingiverse Profile

            1 Reply Last reply Reply Quote 0
            • AaronGreenundefined
              AaronGreen
              last edited by

              @DocTrucker:

              Have you already seen the release notes about adding "S2" to moves before an axis is homed?

              I did catch the notes a few days ago, and have tried implementing it, but I'm formally an animator, not a programmer, so I have no idea precisely which file and what lines of code should include 'S2'.

              I threw it in here (under Lift Z):

              ; homeall.g
              ; called to home all axes
              ;
              ; generated by RepRapFirmware Configuration Tool on Sat Mar 04 2017 15:46:00 GMT+0100 (W. Europe Standard Time)

              ; Relative positioning
              G91

              ; Lift Z
              S2 G1 Z5 F6000

              ; Course home X and Y
              G1 X-235 Y-215 F4000 S1

              ; Move away from the endstops
              G1 X5 Y5 F5000

              ; Fine home X and Y
              G1 X-235 Y-215 F250 S1

              ; Absolute positioning
              G90

              ; Go to first bed probe point and home Z
              T0 ; select first hot end
              G91 ; Relative coordinates
              G1 Z3 F200 ; Lower bed to avoid hotend dragging in bed.
              G90 ; Absoulte coordinates
              G1 X170 Y125 F3000 ; Go to first bed probe point and home the Z axis
              M401 ; Deploy probe
              G30 ; Probe
              M402 ; Retract probe
              G1 Z10 ; Move nozzle up 10mm

              It homes X and Y, then throws this error:

              G28
              Error: Bad command: S2 G1 Z5 F6000
              Error: G0/G1: insufficient axes homed

              1 Reply Last reply Reply Quote 0
              • AaronGreenundefined
                AaronGreen
                last edited by

                Additionally, since 1.21, it's heating my bed up on startup, over a 110degs-c, AND won't start the WiFi module, so I need to run M552 S1 in Pronterface with a USB connection every single restart.

                1. WiFi module won't start when switched on.
                2. Bed heats up with full power.
                3. Can't Home All axis.

                1 Reply Last reply Reply Quote 0
                • DocTruckerundefined
                  DocTrucker
                  last edited by

                  Move the S2 to the end of the line:

                  G1 Z5 F6000 S2

                  …rather than:

                  S2 G1 Z5 F6000

                  Running 3 P3Steel with Duet 2. Duet 3 on the shelf looking for a suitable machine. One first generation Duet in a Logo/Turtle style robot!

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

                    G1 S2 Z5 F6000 will also work. The important thing is that the actual command (G1 in this case) comes 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
                    • AaronGreenundefined
                      AaronGreen
                      last edited by

                      OK, updated homeall.g, homez.g and I get this error:

                      G28
                      Error: G0/G1: insufficient axes homed

                      It homes X and Y first, then stops. Does anyone have a copy of their homeall.g file so I can have a look at it and appropriate it for my printer? Is there anything else I need to update?

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

                        Please post your current homez.g and homeall.g files

                        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
                        • AaronGreenundefined
                          AaronGreen
                          last edited by

                          ; homeall.g
                          ; called to home all axes
                          ;
                          ; generated by RepRapFirmware Configuration Tool on Sat Mar 04 2017 15:46:00 GMT+0100 (W. Europe Standard Time)

                          ; Relative positioning
                          G91

                          ; Lift Z
                          G1 S2 Z5 F6000

                          ; Course home X and Y
                          G1 X-235 Y-215 F4000 S1

                          ; Move away from the endstops
                          G1 X5 Y5 F5000

                          ; Fine home X and Y
                          G1 X-235 Y-215 F250 S1

                          ; Absolute positioning
                          G90

                          ; Go to first bed probe point and home Z
                          T0 ; select first hot end
                          G91 ; Relative coordinates
                          G1 Z3 F200 ; Lower bed to avoid hotend dragging in bed.
                          G90 ; Absoulte coordinates
                          G1 X170 Y125 F3000 ; Go to first bed probe point and home the Z axis
                          M401 ; Deploy probe
                          G30 ; Probe
                          M402 ; Retract probe
                          G1 Z10 ; Move nozzle up 10mm

                          homez.g:

                          T0 ; select first hot end
                          G91 ; Relative coordinates
                          G1 S2 Z10 F200 ; Lower bed to avoid hotend dragging in bed.
                          G90 ; Absolute coordinates
                          G1 S2 X170 Y125 F3000 ; Go to first bed probe point and home the Z axis
                          M401 ; deploy probe
                          G30 ; Calibrate Z-axis
                          G1 S2 Z10
                          M402
                          G1 S2 Z2 F200 ; Raise bed to 2mm.
                          G1 S2 Z10

                          1 Reply Last reply Reply Quote 0
                          • AaronGreenundefined
                            AaronGreen
                            last edited by

                            Also, I just found out that my bed is moving backwards on the Y axis on start up, along with heating.

                            The only thing different about my printer before and when it was working is the 1.21 update.

                            1. WiFi module won't start when printer is switched on, and requires a third-party program to run M552 S1 to start.
                            2. Bed heats up with full power.
                            3. Bed moves backwards slowly on Y axis until Y stop on start up.
                            4. Can't Home All axis because the G-code is incomplete.

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

                              This line in homeall.g:

                              G1 Z3 F200 ; Lower bed to avoid hotend dragging in bed.

                              needs the S2 parameter added.

                              Regarding the issues on startup, please post your config.g file.

                              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
                              • AaronGreenundefined
                                AaronGreen
                                last edited by

                                ;Config.g

                                ; General preferences
                                M111 S0 ; Debugging off
                                G21 ; Work in millimetres
                                G90 ; Send absolute coordinates…
                                M83 ; ...but relative extruder moves
                                M555 P2 ; Set firmware compatibility to look like Marlin
                                M208 X0 Y0 Z0 S1 ; Set axis minima
                                M208 X340 Y250 Z280 S0 ; Set axis maxima

                                ; Endstops
                                M574 X1 Y1 Z1 S0 ; Define active low and unused microswitches
                                M558 P5 X0 Y0 Z1 H10 F200 T6000 ; Set Z probe type to modulated, the axes for which it is used and the probe + travel speeds
                                G31 X-44 Y0 Z7.03 P50 ; Set Z probe trigger value, offset and trigger height

                                ; Z-offset (Z0.9). Higher value LOWER nozzle height
                                ; Lower value RAISE nozzle height

                                M557 X10:340 Y10:240 S68 ; Define mesh grid

                                M307 H3 A-1 C-1 D-1 ; disable heater 3, which makes it available for use to control the BLTouch

                                ; Drives
                                M569 P0 S1 ; Drive 0 goes forwards - X
                                M569 P1 S0 ; Drive 1 goes backwards - Y
                                M569 P2 S0 ; Drive 2 goes backwards - Z
                                M569 P3 S1 ; Drive 3 goes forwards - Extruder

                                M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation 16
                                M92 X160 Y160 Z1600 E615 ; Set steps per mm 16

                                M566 X600 Y420 Z12 E120 ; Set maximum instantaneous speed changes (mm/min) - (JERK)

                                M203 X6000 Y6000 Z500 E400 ; Set maximum speeds (mm/min)

                                M201 X1000 Y1000 Z1000 E250 ; Set accelerations (mm/s^2)

                                M204 P1000 T1000 ; Set Max acceleration for P=printing moves and T=travel moves
                                M906 X1600 Y1600 Z900 E1000 I30 ; Set motor currents (mA) and motor idle factor in per cent
                                M84 S30 ; Set idle timeout

                                ; Heaters
                                M143 S285 ; Set maximum heater temperature to 285C

                                M305 P0 R4700 T100000 B3950 ; Set thermistor + ADC parameters for heater 0 - BED
                                M305 P1 R4700 T100000 B3950 ; Set thermistor + ADC parameters for heater 1 - HOTEND

                                M307 H0 P96.0, I3.285, D603.9 ;Bed
                                M307 H1 A250 C999 D4.5 B0 S1 ;Hotend

                                ; Tools
                                M563 P0 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

                                ; Network
                                M550 PCLU ; Set machine name
                                M552 P0.0.0.0 S1 ; Enable network and acquire dynamic address via DHCP

                                ; Fans
                                M106 P0 S0.3 I0 F500 H-1 ; Set fan 0 value, PWM signal inversion and frequency. Thermostatic control is turned off
                                M106 P1 S1 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

                                ; Custom settings are not configured

                                1 Reply Last reply Reply Quote 0
                                • AaronGreenundefined
                                  AaronGreen
                                  last edited by

                                  If there's a vanilla config that comes with 1.21, maybe I should just start with that, then bring across some specific parameters for my printer.

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

                                    This line:

                                    @aarongreen said in How Do I Calibrate My Titan Extruder and Test Print?:

                                    M307 H0 P96.0, I3.285, D603.9 ;Bed

                                    is completely wrong. I suggest you delete it, restart the Duet, run bed heater tuning (M303 H0 Sxxx where xxx is the highest bed temperature you normally use), then run M500 to save the new M307 parameter to config-override.g. As you do not have a M501 command at the end of config.g to run config-override.g (which is a perfectly valid choice), you will then need to copy the M307 H0 line from config-override.g into config.g.

                                    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

                                    AaronGreenundefined 1 Reply Last reply Reply Quote 0
                                    • AaronGreenundefined
                                      AaronGreen @dc42
                                      last edited by

                                      @dc42 said in How Do I Calibrate My Titan Extruder and Test Print?:

                                      is completely wrong. I suggest you delete it, restart the Duet, run bed heater tuning (M303 H0 Sxxx where xxx is the highest bed temperature you normally use), then run M500 to save the new M307 parameter to config-override.g. As you do not have a M501 command at the end of config.g to run config-override.g (which is a perfectly valid choice), you will then need to copy the M307 H0 line from config-override.g into config.g.

                                      OK, ran through that process thanks. I copied the data across and it appears to be stable.

                                      ; Heaters
                                      M143 S285 ; Set maximum heater temperature to 285C

                                      M305 P0 R4700 T100000 B3950 ; Set thermistor + ADC parameters for heater 0 - BED
                                      M305 P1 R4700 T100000 B3950 ; Set thermistor + ADC parameters for heater 1 - HOTEND

                                      M307 H0 A90.0 C700.0 D10.0 S1.00 V0.0 B1 ;Bed
                                      M307 H1 A250.0 C999.0 D4.5 S1.00 V0.0 B0
                                      M307 H2 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                                      M307 H4 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                                      M307 H5 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                                      M307 H6 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                                      M307 H7 A340.0 C140.0 D5.5 S1.00 V0.0 B0
                                      M307 H1 A250 C999 D4.5 B0 S1 ;Hotend

                                      1 Reply Last reply Reply Quote 0
                                      • AaronGreenundefined
                                        AaronGreen
                                        last edited by

                                        I'm unable to test the bed heater control, as I can't home the printer.

                                        I've checked all the connections since moving, and everything is in place, however when I home the printer just rams X with the grantry and Y with the bed. The sensors are in place as well, so I'm guessing something isn't correct in the config again?

                                        ;Config.g

                                        ; General preferences
                                        M111 S0 ; Debugging off
                                        G21 ; Work in millimetres
                                        G90 ; Send absolute coordinates…
                                        M83 ; ...but relative extruder moves
                                        M555 P2 ; Set firmware compatibility to look like Marlin
                                        M208 X0 Y0 Z0 S1 ; Set axis minima
                                        M208 X340 Y250 Z280 S0 ; Set axis maxima

                                        ; Endstops
                                        M574 X1 Y1 Z1 S0 ; Define active low and unused microswitches
                                        M558 P5 X0 Y0 Z1 H10 F200 T6000 ; Set Z probe type to modulated, the axes for which it is used and the probe + travel speeds
                                        G31 X-44 Y0 Z7.03 P50 ; Set Z probe trigger value, offset and trigger height

                                        ; Z-offset (Z0.9). Higher value LOWER nozzle height
                                        ; Lower value RAISE nozzle height

                                        M557 X10:340 Y10:240 S68 ; Define mesh grid

                                        M307 H3 A-1 C-1 D-1 ; disable heater 3, which makes it available for use to control the BLTouch

                                        ; Drives
                                        M569 P0 S1 ; Drive 0 goes forwards - X
                                        M569 P1 S0 ; Drive 1 goes backwards - Y
                                        M569 P2 S0 ; Drive 2 goes backwards - Z
                                        M569 P3 S1 ; Drive 3 goes forwards - Extruder

                                        M350 X16 Y16 Z16 E16 I1 ; Configure microstepping with interpolation 16
                                        M92 X160 Y160 Z1600 E615 ; Set steps per mm 16

                                        M566 X600 Y420 Z12 E120 ; Set maximum instantaneous speed changes (mm/min) - (JERK)

                                        M203 X6000 Y6000 Z500 E400 ; Set maximum speeds (mm/min)

                                        M201 X1000 Y1000 Z1000 E250 ; Set accelerations (mm/s^2)

                                        M204 P1000 T1000 ; Set Max acceleration for P=printing moves and T=travel moves
                                        M906 X1600 Y1600 Z900 E1000 I30 ; Set motor currents (mA) and motor idle factor in per cent
                                        M84 S30 ; Set idle timeout

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

                                          I suggest you test the homing switches, see https://duet3d.dozuki.com/Wiki/Connecting_endstop_switches#Section_Test_endstop_switches.

                                          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
                                          • AaronGreenundefined
                                            AaronGreen
                                            last edited by AaronGreen

                                            Geez this is complicated. I haven't changed anything, and they don't work. I don't know why I'm going over this again.

                                            The end stop LEDs for X and Y are on, yet all the physical connections are good. I would think it's too much of a coincidence that both of them have failed at the same time, but I suppose there's a chance, and I'll have to order replacements which will take a while to arrive.

                                            In the Machine Properties, it says X and Y are 'No' and Z is 'Yes' with:

                                            ; Endstops
                                            M574 X1 Y1 Z1 S0 ; Define active low and unused microswitches

                                            Even though X and Y are triggered, according to the LEDs on the board. Unless this means that faulty switches can't be triggered either way, and they're still showing up as not triggered, because they're 'un-trigger-able'. The Z is always triggered at the start, because it uses a BLTouch sensor, but doesn't show an LED light. The X and Y sensors both being faulty, for some reason, is the only explanation why this doesn't work.

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