Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. Timothee Leblond
    • Profile
    • Following 0
    • Followers 0
    • Topics 12
    • Posts 90
    • Best 1
    • Controversial 0
    • Groups 0

    Timothee Leblond

    @Timothee Leblond

    1
    Reputation
    6
    Profile views
    90
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Timothee Leblond Unfollow Follow

    Best posts made by Timothee Leblond

    • RE: Error in Sensorless homing

      @jay_s_uk

      I kinda got what you meant. I tried using the following parameters and not It is not making noise anymore and works properly.

      M915 X Y S5 R1 F1 H2  ; set sensorless homing
      

      Do I need to put the same M915 at the end of my config.g after the endstop section? (instead of M915 X Y R0 F0)

      Also, using a Biqu microprobe as Z sensor - Should I use the same parameters for Z axes such as D3 for stealthchop? Does my homez looks good:

      ; homez.g
      ; called to home the Z axis
      ;
      ; generated by RepRapFirmware Configuration Tool v3.5.8 on Tue Dec 10 2024 15:03:23 GMT-0500 (Eastern Standard Time)
      
      ; ################# Home Z Preparation ################
      
      G91 															; Relative mode
      G1 H2 Z5 F5000													; Lower the bed
      G90	
      var xCenter = move.compensation.probeGrid.mins[0] + (move.compensation.probeGrid.maxs[0] - move.compensation.probeGrid.mins[0]) / 2 - sensors.probes[0].offsets[0]
      var yCenter = move.compensation.probeGrid.mins[1] + (move.compensation.probeGrid.maxs[1] - move.compensation.probeGrid.mins[1]) / 2 - sensors.probes[0].offsets[1]
      G1 X{var.xCenter} Y{var.yCenter} F4000 ; go to bed centre															; Back to absolute positioning
      
      ; ################# Home Z Preparation ################
      
      G30					 											; Probe a single point
      
      
      posted in Duet Hardware and wiring
      Timothee Leblondundefined
      Timothee Leblond

    Latest posts made by Timothee Leblond

    • RE: Simultaneous dual extrusion - Part 2

      @dc42
      Great thank you! Would you also know if changing the Extruder % through the paneldue will impact both extruders? If yes, Is there a way to control both Extruder1% and Extruder2%?

      Thank you for your help!

      Timothee

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond
    • Simultaneous dual extrusion - Part 2

      Re: Simultaneous dual extrusion

      @dc42 I'm coming back to you as I've been working on a Gcode processor to add a second E value as suggested in your answer.

      G1 Xxxx Yyyy E3.2:12.0

      Should I map this as 2 different tools?

      Thank you!

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond
    • RE: Simultaneous dual extrusion

      @o_lampe

      I'm sorry but could you please give me an example or explain a bit deeper what you're thinking about? I'm not sure to understand.

      I agree with you, it was just an example of a "long extrusion command" in contrast to 1.2.

      Thanks!

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond
    • RE: Simultaneous dual extrusion

      @dc42

      I'm working at very low speed for now so I did not face this problem yet to be honest - but thanks for the tip.

      So from what I understand, there is no way I can send 2 G1 commands in parallel to deposit with my different extruders? I know it sounds weird but I think it might be worth trying different ways...

      About the processor, what would you suggest starting with?

      PS: I'm not an OEM but I'm developing a new machine for research purposes. I don't know if it is of interest to you, but let me know if it is the case.

      Thank you very much!

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond
    • RE: Simultaneous dual extrusion

      @dc42

      I got it. And yes it is the kind of output I have from the slicer for the first extruder.

      However, what I want from the second extruder is to deposit a specific length of material along the path. The only information I know is the total length (for example 4700mm). I had the idea of writing a short program that would distribute the length based on the number of move but this is not convenient as it would deposit the same length no matter how long the moves are. Also, the rate of extrusion is calculated to be the same as the printing speed as it is a continuous material.

      That's why the ideal scenario would have been to send a long-distance command like G1 E4700 F300 in parallel to the regular commands. Any thoughts?

      Thank you,

      Timothee

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond
    • RE: Infinite screw in RRF

      @dc42

      Thanks for your answer!

      I'm running a printer on a Mini 5+ with 2 extruders mounted on the same carriage. The goal is to print both materials simultaneously but also independently (sort of an IDEX but with only one carriage). The reason behind this is that this is a bioprinter, and that both extruders deposit different material format. One is a gel and the other is a continuous material. So far I tried mapping both extruders on the same tool and control them through a mixing ratio. This is not convenient as I do not want both extrusion factor to be linked and rely on each other. I also tried having the extruders set to tools but the command at sent sequentially (which I don't want either).

      Instead, I'd like to control the gel extrusion traditionally (through G1 E commands). In parallel, I'd like to send a long-distance command with the other extruder that would run in addition (at the same time) to the other gcode commands.

      This is the reason why I tried mapping one extruder on a tool and the other on an axis, hoping I could use them both in parallel.

      Here is an example (does not work as T2 G1 waits for previous T1 G1 to be completed)

      T1 
      G91
      G1 E4700 F240 ; Long distance command to be ran in background
      
      G90
      T2 ; Run this with second extruder in parallel to the first long distance command
      G1 E1.2
      G1 E2.4
      G1 E3.6
      G1 E4.8
      
      

      Thank you for your precious help!

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond
    • Infinite screw in RRF

      Hey!

      I'm bringing back my old problem about dual extrusion and mixing ratio.
      As the lattest does not work, I had the idea mapping on of my extruder like a axis as it I'd it to behave as an endless screw. Do you think it is doable? How would you organize the Gcode?

      Thank you!

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond
    • RE: Disabling filament retraction?

      @dc42 Worked! Thank you!

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond
    • RE: Simultaneous dual extrusion

      @GeoffVR6 @chrishamm

      Hello,

      I'm coming back as I tried using mixing ratios. It seems this technique is not working very well for my setup. Indeed, both of my extruder should work independently as they should be unrelated. One is a standard extruder but the other mainly acts as an infinite screw. Its speed should not be calculated based on the same parameters as the main extruder.

      For example, in the scenario of a mixing ratio, when I change the extrusion multiplier, all E values are impacted and so are both extruders. No matter the ratio, they are impacted. However, this should be only true for the main extruder only (and not the second one).

      So my question is how would you control an extruder as well as an independent infinite screw, knowing that both should run at the same time? Do you think mapping the second extruder as an axis would work?

      Thank you.

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond
    • RE: Disabling filament retraction?

      @gloomyandy @jay_s_uk @Phaedrux

      Alright, I found the issue, and you're all absolutely right. Apparently, when using absolute extrusion mode, an E value too small reset the extruder and so it comes back in its original position (before the command) which create retractation-like movements.

      So I gave it a try. When E<0.1, it is more likely that it happens. When I use values like E0.2, it works without retracting.

      @jay_s_uk Do you think I should remove M82 in my gcode?
      @gloomyandy You're absolutely right, I just removed the G1 E-2 command at the end and stoped generating it.

      posted in General Discussion
      Timothee Leblondundefined
      Timothee Leblond