Retraction - Firmware vs Slicer
- thegreatfox
- What is a BOM?
- Posts: 20
- Joined: Fri Aug 07, 2020 4:14 am
- Been thanked: 1 time
Re: Retraction - Firmware vs Slicer
I think for evaluating the retraction parameters or when always printing with the same/similar material using firmware is fine. But if you often print with different materials slicer is the way to go in my opinion
- MirageC
- Site Admin
- Posts: 497
- Joined: Fri Jul 24, 2020 12:52 pm
- Has thanked: 7 times
- Been thanked: 51 times
Re: Retraction - Firmware vs Slicer
By creating Filaments profiles into the Duet, parameters will be loaded when you change it. you can insert anything:
Here is an example of my PLA filament profile: I never used firmware retraction. Is it actually works better?
Here is an example of my PLA filament profile: I never used firmware retraction. Is it actually works better?
You do not have the required permissions to view the files attached to this post.
-
- Printed Parts ready
- Posts: 49
- Joined: Fri Jul 24, 2020 2:09 pm
- Location: Utah, USA
- Has thanked: 1 time
- Been thanked: 1 time
- Contact:
Re: Retraction - Firmware vs Slicer
I have never used anything but the slicer for retractions? Didn't realize it could be done otherwise. I have specific profiles for filament type, brand and print type (mechanical vs decorative) stored in my slicer profiles with everything (about 12 different profiles so far). Maybe Ill play around with macros, but I find myself changing setting so often that in the slicer seems easier?
Speaking of slicers - Ive been trying different ones out for the last couple months. I think I'm landing and sticking with ideamaker. I doesn't have direct load up to the duet over wifi, but everything else seems to tickle my fancy a bit more than Cura.
-
- HevORT Builder&Operator
- Posts: 241
- Joined: Sat Jul 25, 2020 8:20 am
- Location: Florida USA
- Been thanked: 3 times
Re: Retraction - Firmware vs Slicer
I did try Cura again couple of days ago and immediately went back to Simplify3D

Re: Retraction - Firmware vs Slicer
Being new, I tried Cure, but found Prusa much easier to use and "free" . I'll have to get out and try more.
Re: Retraction - Firmware vs Slicer
I am using S3D as well and this script makes it possible to upload the sliced file during saving the file to file system. Just replace the IP address with the one of your HevORT and it should work:
Code: Select all
curl --data-binary "@[output_filepath]" "http://192.168.2.10/rr_upload?name=gcodes/[output_filename].gcode"
curl "http://192.168.2.10/rr_gcode?gcode=M32[output_filename].gcode"
curl "http://192.168.2.10/rr_disconnect"
Last edited by derobiwan on Mon Jan 25, 2021 3:07 pm, edited 1 time in total.
-
- What is a BOM?
- Posts: 13
- Joined: Fri Dec 18, 2020 4:52 pm
- Has thanked: 2 times
- Been thanked: 1 time
Re: Retraction - Firmware vs Slicer
I am using S3D too.
Automated upload to the printer sounds great. Where do I put this script?
Automated upload to the printer sounds great. Where do I put this script?
Last edited by DieProfikeit on Mon Jan 25, 2021 4:57 pm, edited 1 time in total.
Re: Retraction - Firmware vs Slicer
I just corrected my code in the post before...
So you put the code in Process Settings -> "Scripts" -> "Additinal terminal commands for post processing"
When you save your sliced model it will execute the script and upload the gcode to duet and start the print.
Just make sure that if you are using Windows that you have curl installed, not sure if that comes with Windows. You can test it by opening a command prompt and execute "curl". The promp should give you a help message on how to use curl.
It also works that way with Octoprint in case someone is using this as well.
Let me know if it worked for you!?
So you put the code in Process Settings -> "Scripts" -> "Additinal terminal commands for post processing"
When you save your sliced model it will execute the script and upload the gcode to duet and start the print.
Just make sure that if you are using Windows that you have curl installed, not sure if that comes with Windows. You can test it by opening a command prompt and execute "curl". The promp should give you a help message on how to use curl.
It also works that way with Octoprint in case someone is using this as well.
Let me know if it worked for you!?