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

    Indication of print in progress

    Scheduled Pinned Locked Moved
    General Discussion
    4
    26
    1.6k
    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.
    • DocTruckerundefined
      DocTrucker
      last edited by

      You could have your slicer add start and end gcode that runs a macro that controls an output. You could also get the slicer to trigger the camera for each layer like this.

      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
      • DocTruckerundefined
        DocTrucker
        last edited by

        ...you could even move the head out of the way of the print for each photo but this will have a direct effect on build time.

        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
        • rubillosundefined
          rubillos
          last edited by

          I'm looking for something that's independent of the slicer, something that will let the capture stop if the print is aborted.

          (I've used slicer based commands with OctoPrint and OctoLapse, in this case I really want something that's triggered directly by the state of the printer).

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

            I'd consider using the ps_on signl then. Either directly if your not making use the safety features to kill the heaters in a fault, or take a feed from that as an enable. I think there are start and stop macros on the duet? Trigger the ps_on from there, and it can also be dropped on a fault.

            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
            • DocTruckerundefined
              DocTrucker
              last edited by DocTrucker

              Yeah, so perhaps call a start.g from your gcode and then drop or raise the signal in the pause/cancel/resume g code scrips:

              https://duet3d.dozuki.com/Wiki/Macros#Section_Pause_stop_and_power_fail

              It doesn't have to be the ps_on signal, I'd recommend keeping that for killing the VIN power supply. Perhaps just trigger a fan output between 0 and 100% duty.

              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
              • rubillosundefined
                rubillos
                last edited by

                Are there start and stop macros? I didn't see them in the docs... if there are then that would solve my problem.

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

                  I think you need to call the start macro but look at the link for pause cancel and resume. Edit: + stop and sleep.

                  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
                  • rubillosundefined
                    rubillos
                    last edited by

                    I guess I could do start and stop in the slicer gcode, but also have the codes in pause/cancel/resume.

                    Was hoping there was a start macro... there's always poking around in the source code and doing a custom build 🙂

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

                      Another way would be to configure the RPi as an HTTP client and have it make rr_status requests to the Duet. The response includes whether or not a file is being printed.

                      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

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

                        The automatic call of an optional start.g gcode does seem like an ommision. @dc42 is there anything on the horizon?

                        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!

                        dc42undefined 1 Reply Last reply Reply Quote 0
                        • rubillosundefined
                          rubillos @dc42
                          last edited by

                          @dc42 has having start.g and end.g files ever been considered? Is there any reason not to have those?

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

                            @rubillos end.g = stop.g

                            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
                            • rubillosundefined
                              rubillos
                              last edited by

                              And that is also called when a print is canceled?

                              DocTruckerundefined dc42undefined 2 Replies Last reply Reply Quote 0
                              • DocTruckerundefined
                                DocTrucker
                                last edited by

                                The http method @dc42 recommends has a few benefits.

                                • No extra wiring or failure points.
                                • If in the (unlikely) event of a process hang the http will stop responding and you can cancel your capture.

                                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!

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

                                  @rubillos https://duet3d.dozuki.com/Wiki/Macros#Section_Pause_stop_and_power_fail

                                  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 @DocTrucker
                                    last edited by

                                    @doctrucker said in Indication of print in progress:

                                    The automatic call of an optional start.g gcode does seem like an ommision. @dc42 is there anything on the horizon?

                                    I implemented this many releases ago.

                                    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

                                    DocTruckerundefined rubillosundefined 2 Replies Last reply Reply Quote 0
                                    • dc42undefined
                                      dc42 administrators @rubillos
                                      last edited by

                                      @rubillos said in Indication of print in progress:

                                      And that is also called when a print is canceled?

                                      No, cancel.g is called instead.

                                      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
                                      • DocTruckerundefined
                                        DocTrucker @dc42
                                        last edited by

                                        @dc42 documentation hasn't caught up yet.

                                        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
                                        • rubillosundefined
                                          rubillos @DocTrucker
                                          last edited by

                                          @doctrucker True. That might be the way to go... I'll have a look at modifying my time-lapse code.

                                          There are just so many I/O pins on the Duex5, seemed like an easy thing to hook up 🙂

                                          1 Reply Last reply Reply Quote 0
                                          • rubillosundefined
                                            rubillos @dc42
                                            last edited by

                                            @dc42 So start.g is called when a print starts?

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