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

    Layer count

    Scheduled Pinned Locked Moved
    Tuning and tweaking
    10
    37
    5.8k
    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.
    • dc42undefined
      dc42 administrators
      last edited by

      @Shotfire, can you make that file available to me via Dropbox or similar?

      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
      • burtoogleundefined
        burtoogle
        last edited by

        Hi shotfire, is your print spiralized? Webcontrol doesn't show the correct info when printing a Cura spiralized model.

        1 Reply Last reply Reply Quote 0
        • Shotfireundefined
          Shotfire
          last edited by

          @burtoogle, No, I'm just printing a a new box for the DuetWif right now. But it happens on every print I do no matter what size or shape

          1 Reply Last reply Reply Quote 0
          • burtoogleundefined
            burtoogle
            last edited by

            That's weird, I'm using Cura 2.5 and the layer stats + time prediction all work as they should.

            1 Reply Last reply Reply Quote 0
            • burtoogleundefined
              burtoogle
              last edited by

              I would also like to take a look at one of your gcode files that are misbehaving. As DC says, can you put it on Dropbox or similar.

              1 Reply Last reply Reply Quote 0
              • Shotfireundefined
                Shotfire
                last edited by

                I have put it on my dropbox but I don't use dropbox very much, I think I need your email address to give you access

                1 Reply Last reply Reply Quote 0
                • burtoogleundefined
                  burtoogle
                  last edited by

                  Using the dropbox website you can make the file public and then copy a link which can be pasted into the forum here.

                  1 Reply Last reply Reply Quote 0
                  • Nuffeundefined
                    Nuffe
                    last edited by

                    My DWC has been today stuck with 1399 layers. Third print today. Even with different browser sessions. DWC seem to have some problems updating layer counts between different prints if the same session/browser window is used, but now this one happens even with different computers. And I have not had a print with 1399 layers.

                    1 Reply Last reply Reply Quote 0
                    • Nuffeundefined
                      Nuffe
                      last edited by

                      @Nuffe:

                      My DWC has been today stuck with 1399 layers. Third print today. Even with different browser sessions. DWC seem to have some problems updating layer counts between different prints if the same session/browser window is used, but now this one happens even with different computers. And I have not had a print with 1399 layers.

                      this was explained in David's earlier comment. I had newly created end code section using G1.

                      1 Reply Last reply Reply Quote 0
                      • Shotfireundefined
                        Shotfire
                        last edited by

                        Link to File - https://www.dropbox.com/s/qmof43tgvdw58kx/DR2_Doug_duet_wifi_case_1_May-2017_V1%20v2_PetG.gcode?dl=0

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

                          I'll try to make time to look at it tomorrow. Today was taken up with finishing the 1.19alpha firmware release.

                          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
                          • burtoogleundefined
                            burtoogle
                            last edited by

                            I have looked at your gcode and it seems to me that it doesn't match the snippet you show in your message of 1st May. The filament used in the file is what DWC reports (49.2252m). Other than that, it doesn't have an M82 to set the extruder into absolute mode (you have that elsewhere, right?). Looking at the Duet code it seems to me that the only way the layer count could not get incremented would be if you had a very small nozzle diameter specified because then the following would never be true:

                            liveCoordinates[Z_AXIS] < platform->GetNozzleDiameter() * 1.5

                            So with your layer height of 0.25mm, if the nozzle diameter was smaller than 0.1666 (unlikely), layer changes won't get detected.

                            One other comment which isn't related to the layer report problem but is related to Cura 2.5 is that Cura now has a new option to expand areas of skin into infill which is useful when you have small areas of infill underneath features such as pillars (which you have in your print). If you are not yet using the expand skin into infill option, I recommend that you do. If your gcode example has been generated with that option enabled then something is wrong and I need to fix it!!

                            Finally, from the file name I guess you're using PETG. I have found that if I keep combing enabled (Cura feature to avoid retracts and speed up movement) when printing PETG that the nozzle tends to pick up filament and after a while it gets deposited as a hard lump onto the print. So, for PETG, I turn off combing completely.

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

                              The only issue I can see with that gcode file is the common one, that you have a G1 Z command in your end gcode that is confusing the object height detection. It's this line:

                              G1 Z110 F1200 ;Move Z Down

                              The workaround is to start the comment on that line with ;E or ; E for example:

                              G1 Z110 F1200 ;E Move Z Down

                              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
                              • pcsentinelundefined
                                pcsentinel
                                last edited by

                                Also noticed that if you do a spiral vase print then you get weird layer reporting

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

                                  @pcsentinel:

                                  Also noticed that if you do a spiral vase print then you get weird layer reporting

                                  You will do. If you think about it, there is either only one layer or an almost infinite number of layers, depending on how you look at it.

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

                                  1 Reply Last reply Reply Quote 0
                                  • Shotfireundefined
                                    Shotfire
                                    last edited by

                                    @dc42 – Layer counts are working properly after making your code change, Thanks.

                                    @burtoogle --

                                    1. -- I'm using G90 to set the extruder to absolute, is that OK?
                                    2. -- Thanks for the tip on combing, I was experiencing that problem
                                    3. -- And also the tip on Expanding the skin

                                    I'm re-printing now and will see how it turns out,

                                    Thanks

                                    1 Reply Last reply Reply Quote 0
                                    • burtoogleundefined
                                      burtoogle
                                      last edited by

                                      @Shotfire:

                                      1. – I'm using G90 to set the extruder to absolute, is that OK?

                                      I believe that G90 only affects the x/y/z axis, it doesn't affect the extruder. Your Duet must be in absolute extrusion mode already otherwise you wouldn't be able to print at all. It's still worth adding the M82 into your Cura start code to ensure that it will work even if the Duet isn't already in absolute mode. Cheers, Mark.

                                      1 Reply Last reply Reply Quote 0
                                      • Shotfireundefined
                                        Shotfire
                                        last edited by

                                        Mark,

                                        I just checked and I have it in Config.g
                                        ; General preferences
                                        T0 ; Select first tool
                                        M111 S0 ; Debugging off
                                        G21 ; Work in millimeters
                                        G90 ; Send absolute coordinates…
                                        M82 ; Absolute Extruder moves (Cura)
                                        M555 P1 ; Set firmware compatibility to look like RepRapFirmare
                                        Thanks
                                        Doug

                                        1 Reply Last reply Reply Quote 0
                                        • Shotfireundefined
                                          Shotfire
                                          last edited by

                                          I spoke to soon,

                                          Layer Statistics are not working and Layer Count is not updating, its stuck on 2.
                                          Object Height, Total Layer Count and Total Filament Usage are now correct.

                                          Link to file that it is printing https://www.dropbox.com/s/wv4ybg55gresa4l/DR2_Doug_duet_wifi_LID_5_May-2017_V1%20v3_With_SuggestedSettings_PetG.gcode?dl=0

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

                                            Which browser are you using, and which versions of RRF and DWC?

                                            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
                                            • First post
                                              Last post
                                            Unless otherwise noted, all forum content is licensed under CC-BY-SA