• Tags
  • Documentation
  • Order
  • Register
  • Login
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.
  • undefined
    Shotfire
    last edited by 2 May 2017, 16:51

    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
    • undefined
      burtoogle
      last edited by 2 May 2017, 18:02

      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
      • undefined
        Nuffe
        last edited by 2 May 2017, 21:03

        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
        • undefined
          Nuffe
          last edited by 3 May 2017, 19:15

          @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
          • undefined
            Shotfire
            last edited by 4 May 2017, 20:49

            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
            • undefined
              dc42 administrators
              last edited by 4 May 2017, 22:39

              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
              • undefined
                burtoogle
                last edited by 5 May 2017, 07:39 5 May 2017, 07:07

                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
                • undefined
                  dc42 administrators
                  last edited by 5 May 2017, 08:36

                  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
                  • undefined
                    pcsentinel
                    last edited by 5 May 2017, 08:39

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

                    1 Reply Last reply Reply Quote 0
                    • undefined
                      deckingman
                      last edited by 5 May 2017, 08:52

                      @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
                      • undefined
                        Shotfire
                        last edited by 5 May 2017, 15:21

                        @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
                        • undefined
                          burtoogle
                          last edited by 5 May 2017, 16:04

                          @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
                          • undefined
                            Shotfire
                            last edited by 5 May 2017, 16:08

                            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
                            • undefined
                              Shotfire
                              last edited by 5 May 2017, 17:19

                              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
                              • undefined
                                dc42 administrators
                                last edited by 5 May 2017, 18:03

                                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
                                • undefined
                                  Shotfire
                                  last edited by 5 May 2017, 18:56 5 May 2017, 18:48

                                  Windows 10
                                  Firefox Version - 53.0 32 bit

                                  Firmware Name: RepRapFirmware for Duet WiFi
                                  Firmware Electronics: Duet WiFi 1.0
                                  Firmware Version: 1.18.1 (2017-04-09)
                                  WiFi Server Version: 1.03 (ch fork)
                                  Web Interface Version: 1.15b

                                  I just tried Internet Explorer and it shows the same thing

                                  1 Reply Last reply Reply Quote 0
                                  • undefined
                                    Shotfire
                                    last edited by 5 May 2017, 19:37

                                    It started working at about layer 10 and is now updating for the moment, I have no idea why. I didn't do any thing, was just watching it and it started working

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