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

    Home all not working

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    7
    35
    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.
    • Corexyundefined
      Corexy
      last edited by

      Hi All,

      Starting a new thread as I don't want to blend into the other (now resolved) issue.

      I'm trying to go through the Z height setting procedure, but it's playing up at the G30 S-1 stage...instead of just dropping the nozzle to the bed it's running off on an XY tangent and being very weird. Home all only homes X and Y, and I can't move the Z axis afterwards until I've entered G92 Z0 again.

      Here's my homing files. I'd really appreciate some help, as I've been without a printer for weeks. Cheers for any help in advance.

      Homeall:

      ; homeall.g
      ; called to home all axes
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.2 on Mon Nov 18 2019 18:31:12 GMT+1100 (Australian Eastern Daylight Time)
      G91 ; relative positioning
      G1 H2 Z5 F6000 ; lift Z relative to current position
      G1 H1 X-200 Y-200 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-200 Y-200 F360 ; move slowly to X and Y axis endstops once more (second pass)
      G90 ; absolute positioning
      G1 H2 X97.5 Y97.5 F6000 ; 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 S2 Z5 F100 ; lift Z relative to current position
      G90 ; absolute positioning

      Homex:

      ; homex.g
      ; called to home the X axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.2 on Mon Nov 18 2019 18:31:12 GMT+1100 (Australian Eastern Daylight Time)
      G91 ; relative positioning
      G1 H2 Z5 F6000 ; lift Z relative to current position
      G1 H1 X-200 F1800 ; move quickly to X axis endstop and stop there (first pass)
      G1 H2 X5 F6000 ; go back a few mm
      G1 H1 X-200 F360 ; move slowly to X axis endstop once more (second pass)
      G1 H2 Z-5 F6000 ; lower Z again
      G90 ; absolute positioning

      Homey"

      ; homey.g
      ; called to home the Y axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.2 on Mon Nov 18 2019 18:31:12 GMT+1100 (Australian Eastern Daylight Time)
      G91 ; relative positioning
      G1 H2 Z5 F6000 ; lift Z relative to current position
      G1 H1 Y-200 F1800 ; move quickly to Y axis endstop and stop there (first pass)
      G1 H2 Y5 F6000 ; go back a few mm
      G1 H1 Y-200 F360 ; move slowly to Y axis endstop once more (second pass)
      G1 H2 Z-5 F6000 ; lower Z again
      G90 ; absolute positioning

      Homez:

      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v2.1.2 on Mon Nov 18 2019 18:31:12 GMT+1100 (Australian Eastern Daylight Time)
      G91 ; relative positioning
      G1 H2 Z5 F6000 ; lift Z relative to current position
      G90 ; absolute positioning
      G1 H2 X15 Y15 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 H2 Z5 F100 ; lift Z relative to current position
      G90 ; absolute positioning

      1 Reply Last reply Reply Quote 0
      • droftartsundefined
        droftarts administrators
        last edited by

        From your name, I'm assuming this is a CoreXY printer?!

        I think it's the mixing up of the G1 H1... and G1 H2... moves. From the Gcode dictionary:

        • H1 terminate the move when the endstop switch is triggered and set the axis position to the axis limit defined by M208. On delta printers, H1 also selects individual motor mode as for H2. Normally used with relative motor coordinates (see G91).
        • H2 Individual motor mode. X refers to the X motor, Y refers to the Y motor, and so on. Normally used with relative motor coordinates (see G91).

        If I create a fresh homeall.g for a CoreXY in the configurator, it looks like this:

        ; homeall.g
        ; called to home all axes
        ;
        ; generated by RepRapFirmware Configuration Tool v2.1.2 on Wed Nov 20 2019 10:31:46 GMT+0000 (Greenwich Mean Time)
        G91                     ; relative positioning
        G1 H2 Z5 F6000          ; lift Z relative to current position
        G1 H1 X-205 Y-205 F1800 ; move quickly to X or Y endstop and stop there (first pass)
        G1 H1 X-205             ; home X axis
        G1 H1 Y-205             ; home Y axis
        G1 X5 Y5 F6000          ; go back a few mm
        G1 H1 X-205 F360        ; move slowly to X axis endstop once more (second pass)
        G1 H1 Y-205             ; then move slowly to Y axis endstop
        G90                     ; absolute positioning
        G1 H2 X15 Y15 F6000     ; 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 S2 Z5 F100          ; lift Z relative to current position
        ;G90                    ; absolute positioning
        

        All X and Y moves are H1. You don't need any H2 type moves with CoreXY. Change that using the above as a reference, and see if it helps.

        Ian

        Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

        1 Reply Last reply Reply Quote 0
        • Corexyundefined
          Corexy
          last edited by

          Sorry mate, it's actually a straight old cartesian. A converted Zortrax M200.

          The name was just because I had big plans to build one back in the day, but I must say this one has worked for years.

          Is there any way to read .g files without a mother board, like a file reader of sorts?

          I've got all my old files saved in my computer, but can't read them.

          Thanks very much for replying all the same, appreciated.

          droftartsundefined deckingmanundefined 2 Replies Last reply Reply Quote 0
          • droftartsundefined
            droftarts administrators @Corexy
            last edited by

            @Corexy said in Home all not working:

            Sorry mate, it's actually a straight old cartesian. A converted Zortrax M200. The name was just because I had big plans to build one back in the day, but I must say this one has worked for years.

            Okay. I'll take another look at it.

            Is there any way to read .g files without a mother board, like a file reader of sorts? I've got all my old files saved in my computer, but can't read them.

            Gcode files are just text files. Open them with any text editor, even Windows built-in one.

            Ian

            Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

            1 Reply Last reply Reply Quote 0
            • deckingmanundefined
              deckingman @Corexy
              last edited by

              @Corexy In your homeall, after the G30, you have G1 S2 Z5 F100. Take out the S2 because Z has already been homed (and you should be using H2 in any case).

              Basically, unless have M564 H0 anywhere, the default behaviour is that you can't make any G1 moves unless the axis you are trying to move has been homed. So in our homing files, where we want to move say Z, before homing X or Y, we have to use an H2 to allow that Z axis move. Then we can use H1 to move the other (X or Y) axes and sense when the end stop has triggered. But as soon as that happens, that axis is then flagged as homed. So any subsequent moves after the initial H1 move for that axis can simply be G1 without any S or H parameters.

              To edit you homing homing files, use any text editor. Notepad++ is a good one and it's free.

              Ian
              https://somei3deas.wordpress.com/
              https://www.youtube.com/@deckingman

              1 Reply Last reply Reply Quote 0
              • Corexyundefined
                Corexy
                last edited by

                Cheers guys,

                So is there any harm in me just copying my old files (config.g, homeall.g, etc) across to my new SD card?

                Is it only the firmware that gets updated?

                deckingmanundefined 1 Reply Last reply Reply Quote 0
                • deckingmanundefined
                  deckingman @Corexy
                  last edited by deckingman

                  @Corexy said in Home all not working:

                  Cheers guys,

                  So is there any harm in me just copying my old files (config.g, homeall.g, etc) across to my new SD card?

                  Is it only the firmware that gets updated?

                  No. There is no harm in copying your old files to a new SD card. Make sure that you put them in the right folder of the SD card - (config and homing files go in the .sys folder).

                  Actually, given that SD cards aren't the most reliable storage media (as well as the fact that they are easily lost), what I do is keep everything in a folder on my PC which has exactly the same structure as the SD card. This folder is backed up to a NAS and also to cloud storage. So I always have a (backed up) working copy of the contents of my SD card on my PC. Then if I want to change anything or edit a file, I do it on my PC and upload it to the SD card (or remove the SD card, put it in my PC and copy across).

                  Edit. To elaborate - initially I copied the entire contents of my SD card to a new folder on my PC. This is the folder that I modify as required then transfer any changes to the SD card.

                  Ian
                  https://somei3deas.wordpress.com/
                  https://www.youtube.com/@deckingman

                  1 Reply Last reply Reply Quote 0
                  • Corexyundefined
                    Corexy
                    last edited by

                    @deckingman

                    So that didn't go so well...

                    I've put my old config.g file on the SD card, and now it's all pretty much unresponsive.

                    I've got 2000 degC on my extruder temp, yet my M305 is set to "X200" for a PT100 sensor.

                    The wifi module does not start when I turn the machine on, I can only activate it with YAT, then it works fine.

                    When I activate it through YAT and connect to the DWC, I see I've got the following firmware:

                    DWC 2.0.4
                    Firmware 2.04
                    Duet wifi version 1.23

                    The machine does not respond to any movement commands at all now, which is strange as this is the exact config.g file I've used for years on this same machine.

                    Pretty stressful this...

                    Here's my config.g file as it stands right now:

                    ; Configuration file for Duet WiFi
                    ; executed by the firmware on start-up
                    ;
                    ; generated by RepRapFirmware Configuration Tool on Sat Oct 22 2016 18:28:19 GMT+1100 (AUS Eastern Daylight Time)

                    ; 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 X195 Y195 Z175 S0 ; Set axis maxima
                    M557 X20:180 Y20:180 S40

                    ; Endstops
                    M574 Z0 S0 ; Define active low and unused microswitches
                    M574 X1 Y1 S1 ; Define active high microswitches
                    M558 P1 X0 Y0 Z1 H5 F600 T6000 ; Set Z probe type to unmodulated, the axes for which it is used and the probe + travel speeds
                    G31 P500 X0 Y0 Z2.4 ; Set Z probe trigger value, offset and trigger height

                    ; 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
                    M350 X16 Y16 Z16 E16 I1 ; Configure microstepping without interpolation
                    M92 X80 Y80 Z800 E127 ; Set steps per mm
                    M566 X1600 Y1600 Z12 E800 ; Set maximum instantaneous speed changes (mm/min)
                    M203 X18000 Y18000 Z1200 E8000 ; Set maximum speeds (mm/min)
                    M201 X1200 Y1200 Z20 E1200 ; Set accelerations (mm/s^2)
                    M906 X1100 Y1100 Z800 E600 I30 ; Set motor currents (mA) and motor idle factor in per cent
                    M84 S30 ; Set idle timeout

                    ; Heaters
                    M143 S280 ; Set maximum extruder temperature to 280C
                    M143 H0 S140 ; Set maximum bed temperature to 140C
                    M305 P0 T100000 B4000 C0 R4700 L0 H0 ; Set thermistor + ADC parameters for heater 0
                    M305 P1 T100000 B4138 C0 R4700 L0 H0 X200 ; Set thermistor + ADC parameters for heater 1 and remap it to channel 200
                    M307 H0 A144.9 C625.3 D1.0 B0
                    M307 H1 A999.7 C377.6 D13.5 B0

                    ; Tools
                    M563 P0 D0 H1 ; Define tool 0
                    G10 P0 X0 Y0 ; Set tool 0 axis offsets
                    G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
                    T0

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

                    ; Fans
                    M106 P0 S0 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
                    • fcwiltundefined
                      fcwilt
                      last edited by

                      Hi,

                      Do you have a Duet WiFi or a Duet Ethernet board?

                      The commands you have in your OLD config.g file are trying to enable the network on a Duet Ethernet board.

                      I think you may be a "victim" of the configuration tool. By that I mean the config tool sort of shields you from the nitty gritty of the commands needed to get a machine up and running.

                      Life gets much easier, printer wise, when you fully grasp the purpose of every line in your config.g file. And a good way to get that education is by constructing your own config.g file with an editor. Just the process of typing it in helps you learn even if you start with a basic config file from some other source and make changes as needed.

                      Anyway enough of that - let us know what kind of board you have.

                      Frederick

                      Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

                      1 Reply Last reply Reply Quote 0
                      • Corexyundefined
                        Corexy
                        last edited by Corexy

                        Mate that's most kind of you.

                        Poor old David and Deckingham have been enduring me for years lol, and I end up in this situation if ever I touch the thing. I do build a very tough and straight printer mechanically by the way, it''s just this stage that takes me down every time.

                        I did use the config tool with my json file uploaded into it, and you are correct, I've got a Duet wifi 2. That would explain the connection issues!

                        Are you referring to M552? This is what I have now:

                        M552 P0.0.0.0 S1 ; Enable network and acquire dynamic address via DHCP

                        So yes please, tell me what I need to change to correct the connection issues for starters.

                        I do appreciate the help I get on here, and my love/hate relationship with this printer is more love than hate.

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

                          Hi,

                          From the docs for M552:

                          Parameters for Duet 2 WiFi

                          P"ssid" (optional, RepRapFirmware 1.20 and later) SSID of network to connect to. The SSID and password must already have been registered using M587. If this parameter is not present, the Duet 2 WiFi will try to connect to the strongest network that is broadcasting its SSID and whose SSID has been registered using M587.
                          Snnn 0 = disable networking, 1 = enable networking as a client, 2 = enable networking as an access point , -1 = disable WiFi module

                          Printers: a small Utilmaker style, a small CoreXY and a E3D MS/TC setup. Various hotends. Using Duet 3 hardware running 3.4.6

                          1 Reply Last reply Reply Quote 0
                          • Danalundefined
                            Danal
                            last edited by

                            Try just "M552 S1", assuming you want the IP assigned by your router.

                            Here's the relevant part of my Duet2 config files:

                            ; Network
                            M550 PDanal's BFD               ; Set machine name
                            M551 P                          ; Set password
                            M552 S1                         ; Enable network
                            ;*** Desired SSID is configured manually via M587, once only, do not put M587 in config.g
                            M586 P0 S1                      ; Enable HTTP
                            M586 P1 S0                      ; Disable FTP
                            M586 P2 S0                      ; Disable Telnet

                            Delta / Kossel printer fanatic

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

                              In regards to your original problem with G30 S-1, do you by chance have a deployprobe.g and retractprobe.g files in your /sys folder? If so, delete them, and I think your probing problem will be resolved.

                              Did you happen to backup the config files you were working on before reverting to the old ones? Your old firmware was quite old and there are likely several changes that would need to be made to get the old config to work on the new firmware. Mainly that you won't be able to move any axis before it is homed, which also means that your homing files will need to be updated. The new set of config files you got from the configurator would have had all those changes in place already.

                              Z-Bot CoreXY Build | Thingiverse Profile

                              1 Reply Last reply Reply Quote 0
                              • Corexyundefined
                                Corexy
                                last edited by

                                Guys,

                                I don't know how to multiquote (I think we've established that I'm not the computery type), but these were all very helpful tips, and a couple of problems are now resolved.

                                fcwilt/Danal,

                                Yes, it was just a matter of making it "M552 S1" and it all lights up and connects almost instantly. Very happy, thank you.

                                Phaedrux,

                                Same for you mate, deleted those 2 files and it's homing on all 3 axis's. I haven't time for setting nozzle height right now as I'm headed out. Feeling confident it's more happy now.

                                I did keep backups, but I've gotten all flustered and mixed them all up. When I get this all sorted, I'll back a good copy onto my laptop.

                                I do really appreciate the help I'm getting on here, and thank you all for your time.

                                Of course I've got another post following this one with my next problem...

                                1 Reply Last reply Reply Quote 0
                                • Corexyundefined
                                  Corexy
                                  last edited by

                                  Guys,

                                  My next problem seems to be my extruder heater setting.

                                  I've got a reading of 2000 degC, but it's also in a purple box, whatever that means?

                                  My M305 is set to X200, as I have a PT100 sensor fitted, but the text my have extras added by the configurator. Could you please help me out with this one, as after that I think it's pretty much a case of starting to print.

                                  Please see below:

                                  ; Configuration file for Duet WiFi
                                  ; executed by the firmware on start-up
                                  ;
                                  ; generated by RepRapFirmware Configuration Tool on Sat Oct 22 2016 18:28:19 GMT+1100 (AUS Eastern Daylight Time)

                                  ; 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 X195 Y195 Z175 S0 ; Set axis maxima
                                  M557 X20:180 Y20:180 S40

                                  ; Endstops
                                  M574 Z0 S0 ; Define active low and unused microswitches
                                  M574 X1 Y1 S1 ; Define active high microswitches
                                  M558 P1 X0 Y0 Z1 H5 F600 T6000 ; Set Z probe type to unmodulated, the axes for which it is used and the probe + travel speeds
                                  G31 P500 X0 Y0 Z2.4 ; Set Z probe trigger value, offset and trigger height

                                  ; 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
                                  M350 X16 Y16 Z16 E16 I1 ; Configure microstepping without interpolation
                                  M92 X80 Y80 Z800 E127 ; Set steps per mm
                                  M566 X1600 Y1600 Z12 E800 ; Set maximum instantaneous speed changes (mm/min)
                                  M203 X18000 Y18000 Z1200 E8000 ; Set maximum speeds (mm/min)
                                  M201 X1200 Y1200 Z20 E1200 ; Set accelerations (mm/s^2)
                                  M906 X1100 Y1100 Z800 E600 I30 ; Set motor currents (mA) and motor idle factor in per cent
                                  M84 S30 ; Set idle timeout

                                  ; Heaters
                                  M143 S280 ; Set maximum extruder temperature to 280C
                                  M143 H0 S140 ; Set maximum bed temperature to 140C
                                  M305 P0 T100000 B4000 C0 R4700 L0 H0 ; Set thermistor + ADC parameters for heater 0
                                  M305 P1 T100000 B4138 C0 R4700 L0 H0 X200 ; Set thermistor + ADC parameters for heater 1 and remap it to channel 200
                                  M307 H0 A144.9 C625.3 D1.0 B0
                                  M307 H1 A999.7 C377.6 D13.5 B0

                                  ; Tools
                                  M563 P0 D0 H1 ; Define tool 0
                                  G10 P0 X0 Y0 ; Set tool 0 axis offsets
                                  G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
                                  T0

                                  ; Network
                                  M550 PZortrax M200 ; Set machine name
                                  M552 S1 ; Enable network and acquire dynamic address via DHCP
                                  M586 P0 S1 ; Enable HTTP
                                  M586 P1 S0 ; Disable FTP
                                  M586 P2 S0 ; Disable Telnet

                                  ; Fans
                                  M106 P0 S0 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

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

                                    @Corexy said in Home all not working:

                                    M305 P1 T100000 B4138 C0 R4700 L0 H0 X200 ; Set thermistor + ADC parameters for heater 1 and remap it to channel 200

                                    Remove all the T B C R L H stuff and just use M305 P1 X200

                                    Z-Bot CoreXY Build | Thingiverse Profile

                                    Corexyundefined 1 Reply Last reply Reply Quote 0
                                    • Corexyundefined
                                      Corexy @Phaedrux
                                      last edited by

                                      @Phaedrux said in Home all not working:

                                      @Corexy said in Home all not working:

                                      M305 P1 T100000 B4138 C0 R4700 L0 H0 X200 ; Set thermistor + ADC parameters for heater 1 and remap it to channel 200

                                      Remove all the T B C R L H stuff and just use M305 P1 X200

                                      And of course that fixed it, thank you again.

                                      As we've had a couple of cases of excessive text causing problems here, do you see any other lines that could be cleaned up? I'm keen to scrape this right back to just what it needs now, as I run the old one with all sorts of extra folders in there, and it did start up fiddly sometimes. I want to make this one dead clean and back it all up on my laptop to avoid this drama moving forward.

                                      ; Configuration file for Duet WiFi
                                      ; executed by the firmware on start-up
                                      ;
                                      ; generated by RepRapFirmware Configuration Tool on Sat Oct 22 2016 18:28:19 GMT+1100 (AUS Eastern Daylight Time)

                                      ; 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 X195 Y195 Z175 S0 ; Set axis maxima
                                      M557 X20:180 Y20:180 S40

                                      ; Endstops
                                      M574 Z0 S0 ; Define active low and unused microswitches
                                      M574 X1 Y1 S1 ; Define active high microswitches
                                      M558 P1 X0 Y0 Z1 H5 F600 T6000 ; Set Z probe type to unmodulated, the axes for which it is used and the probe + travel speeds
                                      G31 P500 X0 Y0 Z2.78 ; Set Z probe trigger value, offset and trigger height

                                      ; 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
                                      M350 X16 Y16 Z16 E16 I1 ; Configure microstepping without interpolation
                                      M92 X80 Y80 Z800 E127 ; Set steps per mm
                                      M566 X1600 Y1600 Z12 E800 ; Set maximum instantaneous speed changes (mm/min)
                                      M203 X18000 Y18000 Z1200 E8000 ; Set maximum speeds (mm/min)
                                      M201 X1200 Y1200 Z20 E1200 ; Set accelerations (mm/s^2)
                                      M906 X1100 Y1100 Z800 E600 I30 ; Set motor currents (mA) and motor idle factor in per cent
                                      M84 S30 ; Set idle timeout

                                      ; Heaters
                                      M143 S280 ; Set maximum extruder temperature to 280C
                                      M143 H0 S140 ; Set maximum bed temperature to 140C
                                      M305 P0 T100000 B4000 C0 R4700 L0 H0 ; Set thermistor + ADC parameters for heater 0
                                      M305 P1 X200 ; Set thermistor + ADC parameters for heater 1 and remap it to channel 200
                                      M307 H0 A144.9 C625.3 D1.0 B0
                                      M307 H1 A999.7 C377.6 D13.5 B0

                                      ; Tools
                                      M563 P0 D0 H1 ; Define tool 0
                                      G10 P0 X0 Y0 ; Set tool 0 axis offsets
                                      G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
                                      T0

                                      ; Network
                                      M550 PZortrax M200 ; Set machine name
                                      M552 S1 ; Enable network and acquire dynamic address via DHCP
                                      M586 P0 S1 ; Enable HTTP
                                      M586 P1 S0 ; Disable FTP
                                      M586 P2 S0 ; Disable Telnet

                                      ; Fans
                                      M106 P0 S0 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
                                      • Phaedruxundefined
                                        Phaedrux Moderator
                                        last edited by

                                        It looks ok otherwise.

                                        Z-Bot CoreXY Build | Thingiverse Profile

                                        1 Reply Last reply Reply Quote 0
                                        • droftartsundefined
                                          droftarts administrators
                                          last edited by

                                          You don't have an M584 command, which sets the drive mapping. This should be the first command in the "Drives" section. However, you're using the standard mapping (M584 X0 Y1 Z2 E3), so it's not necessary. If you have two Z motors (currently individually connected to ZA and ZB, or wired together) you could split them, which would allow for X gantry levelling. But that might sound difficult to you!

                                          You can remove:

                                          • M111 S0 as debugging is off by default
                                          • G21 as working in millimetres is default
                                          • M555 P2 as compatibility with Marlin is default

                                          I'd move:

                                          • Endstop section to after the Drives section (though it doesn't really matter) and include M208 commands
                                          • Network to the beginning (if any command in config.g causes the config.g to abort, at least you get network!), and put machine name in quotes (good practice for string parameters). You can even remove the M586 commands as HTTP is enabled by default, FTP and Telnet are disabled by default
                                          • Probe settings into it's own section after endstops, and include M557 (bed probing grid).

                                          This should bring most settings into sensible sections, and in order of importance. So it would end up looking like:

                                          ; Configuration file for Duet WiFi
                                          ; executed by the firmware on start-up
                                          ;
                                          ; generated by RepRapFirmware Configuration Tool on Sat Oct 22 2016 18:28:19 GMT+1100 (AUS Eastern Daylight Time)
                                          
                                          ; General preferences
                                          
                                          G90 ; Send absolute coordinates...
                                          M83 ; ...but relative extruder moves
                                          
                                          ; Network
                                          M550 P"Zortrax M200" ; Set machine name
                                          M552 S1 ; Enable network and acquire dynamic address via DHCP
                                          
                                          ; Drives
                                          M584 X0 Y1 Z2 E3 ; Set drive mapping
                                          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
                                          M350 X16 Y16 Z16 E16 I1 ; Configure microstepping without interpolation
                                          M92 X80 Y80 Z800 E127 ; Set steps per mm
                                          M566 X1600 Y1600 Z12 E800 ; Set maximum instantaneous speed changes (mm/min)
                                          M203 X18000 Y18000 Z1200 E8000 ; Set maximum speeds (mm/min)
                                          M201 X1200 Y1200 Z20 E1200 ; Set accelerations (mm/s^2)
                                          M906 X1100 Y1100 Z800 E600 I30 ; Set motor currents (mA) and motor idle factor in per cent
                                          M84 S30 ; Set idle timeout
                                          
                                          ; Endstops
                                          M574 Z0 S0 ; Define active low and unused microswitches
                                          M574 X1 Y1 S1 ; Define active high microswitches
                                          M208 X0 Y0 Z0 S1 ; Set axis minima
                                          M208 X195 Y195 Z175 S0 ; Set axis maxima
                                          
                                          ; Z-Probe
                                          M558 P1 X0 Y0 Z1 H5 F600 T6000 ; Set Z probe type to unmodulated, the axes for which it is used and the probe + travel speeds
                                          G31 P500 X0 Y0 Z2.78 ; Set Z probe trigger value, offset and trigger height
                                          M557 X20:180 Y20:180 S40
                                          
                                          ; Heaters
                                          M143 S280 ; Set maximum extruder temperature to 280C
                                          M143 H0 S140 ; Set maximum bed temperature to 140C
                                          M305 P0 T100000 B4000 C0 R4700 L0 H0 ; Set thermistor + ADC parameters for heater 0
                                          M305 P1 X200 ; Set thermistor + ADC parameters for heater 1 and remap it to channel 200
                                          M307 H0 A144.9 C625.3 D1.0 B0
                                          M307 H1 A999.7 C377.6 D13.5 B0
                                          
                                          ; Tools
                                          M563 P0 D0 H1 ; Define tool 0
                                          G10 P0 X0 Y0 ; Set tool 0 axis offsets
                                          G10 P0 R0 S0 ; Set initial tool 0 active and standby temperatures to 0C
                                          T0
                                          
                                          ; Fans
                                          M106 P0 S0 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
                                          

                                          Hope that helps!

                                          Ian

                                          Bed-slinger - Mini5+ WiFi/1LC | RRP Fisher v1 - D2 WiFi | Polargraph - D2 WiFi | TronXY X5S - 6HC/Roto | CNC router - 6HC | Tractus3D T1250 - D2 Eth

                                          1 Reply Last reply Reply Quote 1
                                          • Corexyundefined
                                            Corexy
                                            last edited by Corexy

                                            Mate that helps a lot.

                                            I've had visitors for a few days and haven't had a chance to look at this, but I'm assuming this going to be more tidy and efficient?

                                            I'll have to have a look at my bed and homing files as well.

                                            And to be honest I just copied and pasted this in and it's working a treat. Thanks for that!

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