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

    Running both extruders at the same time possibility?

    Scheduled Pinned Locked Moved
    Firmware developers
    4
    5
    818
    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.
    • blackmm87undefined
      blackmm87
      last edited by

      Hello Forums!

      I'm trying to build a ceramic extruder style delta printer. I have experience running duetwifis for my corexy builds and find the interface really great. My question right now is that would it be possible to run both extruders, similar to a dual extrusion build, at the same time? The theoretical setup would be to have a stepper run the plunger and another stepper run the auger at the end of the nozzle. The step settings in the duet config file would take care of the right amount of material to extrude but I dont know how I can run both extruders at the same time or if any slicer is able to do the same.

      Any suggestions for a setup like this?

      Mike

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

        This may be enough to get you started: https://duet3d.dozuki.com/Wiki/Gcode#Section_M567_Set_tool_mix_ratios

        Z-Bot CoreXY Build | Thingiverse Profile

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

          @blackmm87 To elaborate on what @Phaedrux has said, that's how mixing hot ends work. So firstly you would need to define a tool to use both extruders. Something along these lines.

          M563 P0 D0:1 H1 where P is the tool number, D0 is the first extruder and D1 is the second one. Note that this command refers to extruders and not drives. So for example if extruder 0 uses drive 4, then you still refer to it as D0 and not D4. I only mention this because it has caught one or two people out in the past.

          Then as @Phaedrux says, you use M567 to define the mixing ratio. On a mixing hot end, the sum of these ratios would always add up to unity because each extruder pushes a different filament. In your case, I'm guessing that you would want both extruders to run at the same speed so you would use M567 P0 E1.00:1.00.

          Edit. As far as a slicer is concerned, it just needs to select a single tool so there is nothing in the slicer settings to be concerned about.

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

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

            There is another way to run two extruders at the same time. Define a tool with more than one extruder using M563, just as @deckingman describes. Then use multiple E parameters in the G1 command, e.g. G1 E1:2 will feed 1mm through the first extruder and 2mm through the second. But there are currently no slicers that generate GCode commands with more than one extrusion parameter. So although this method may be useful in your own macros, when you want to print GCodes generated by a slicer it's easier to use M567 to define a mix ratio.

            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 1
            • blackmm87undefined
              blackmm87
              last edited by

              Hello Everyone,

              Thank you so much for the help! This sounds like exactly what I needed. Will definitely update with the results as I move forward.

              Mike

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