PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc
 
Notifications
Clear all

[Solved] PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc  

Stránka 2 / 3
  RSS
rmilyard
(@rmilyard)
Active Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@antimix

Filament is PLA.

 

 

Attachment removed
Napsal : 25/09/2019 10:09 pm
Antimix
(@antimix)
Reputable Member
Topic starter answered:
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc
Posted by: @rmilyard

@antimix

Filament is PLA.

 

 

 

 

Attachment removed

Hi @rmilyard,

try:

Cooling Moves : 3
speed first move  : 2
speed last move :  8
Dribbling moves:  3

they may be not exactly the same, but I remember I used a very similar settings.

Napsal : 25/09/2019 10:15 pm
rmilyard
(@rmilyard)
Active Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@antimix

Tried those settings and changed nothing else.  Load fail on second pass.

Napsal : 25/09/2019 11:40 pm
Michael
(@michael-15)
Active Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

Thanks a ton for your efforts, antimix! I was able to print a 5-color model with 371 tool changes without any interventions. That was with PLA. Different brands, I used the same settings for all of them.

Another print, where I mixed PLA and PETG needed a single intervention with PETG, where the tips don't seem as perfect as with PLA. That was a model with only 17 tool changes though.

Now I am printing with a single cooling move and three dribblings, to speed up printing. Still perfect tips 🙂

 
Napsal : 02/10/2019 10:35 am
Michael
(@michael-15)
Active Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

To follow up on that: The second print with 371 tool changes was successful as well 😀 This time with only one cooling move.

I have only few mods on my MK2.5+MMU2s: I replaced the MK2.5 heat break with the MK3 heat break from Prusa, as many people here wrote, that this is vital in order to make MK.5+MMU2s work at all. Otherwise I just got rid of the buffer (I hate it! I use self-winding spools now) and installed this: https://www.thingiverse.com/thing:3233579  But I believe that both are not relevant for my success now, the biggest part is the dribbling and the heat break. 

Napsal : 03/10/2019 6:06 am
Antimix a Nikolai se líbí
Volker Jaenisch
(@volker-jaenisch)
Trusted Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@antimix

Building from your GH code under Debian Buster.

src/build-utils/CMakeLists.txt

looks broken to me.

Cheers,

Volker

This post was modified před 4 years by Volker Jaenisch
Napsal : 11/11/2019 4:27 pm
Antimix
(@antimix)
Reputable Member
Topic starter answered:
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@volker-jaenisch

I never built it under Linux. I have compiled on Windows 10, with Visual Studio, following the initial Prusa approximate instructions.
I had to integrate all the missing "...you are skilled developer and you should know by yourself how to 😎 " steps not told, with some scripts that created all the folder structures the compiler needs.  I explained how-to in GitHub in some messages, but I have done it ONLY for Windows 10.
Basically also in Linux you need some basic libraries pre-compiled that should be installed in your development computer, and then you need to launch some shell scripts with specific linux settings that prepare the folder structure and dev environment.
Unfortunately at the moment I don't know how to set up a Linux environment. May be I will have a look, and set up a pre-compiled package if I will success.

Napsal : 11/11/2019 5:51 pm
Nikolai
(@nikolai)
Noble Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc
Posted by: @antimix

Basically also in Linux you need some basic libraries pre-compiled that should be installed in your development computer, and then you need to launch some shell scripts with specific linux settings that prepare the folder structure and dev environment.

There is a dep/ folder where all required deps are being build.

I've tried to build for Mac couple weeks back and even the main branch of PS was failing. Looks like the devs doing some magic in the background in order to compile it. It's definitely not straight forward like described in the how to. 

Often linked posts:
Going small with MMU2
Real Multi Material
My prints on Instagram

Napsal : 11/11/2019 6:13 pm
Volker Jaenisch
(@volker-jaenisch)
Trusted Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@antimix

Dear Antimix!

I have succesfully compiled the original Prusa-slicer 2.1.0 code without any problems on Debian Buster. Doing the same with your fork does not work, because the file  src/build-utils/CMakeLists.txt in your fork see  https://github.com/antimix/PrusaSlicer/blob/master/src/build-utils/CMakeLists.txt is broken:

src/build-utils/CMakeLists.txt:

<<<<<<< HEAD
add_executable(encoding-check encoding-check.cpp)

# A global no-op target which depends on all encodings checks,
# and on which in turn all checked targets depend.
# This is done to make encoding checks the first thing to be
# performed before actually compiling any sources of the checked targets
# to make the check fail as early as possible.
add_custom_target(global-encoding-check
ALL
DEPENDS encoding-check
)
=======

Cheers,

Volker

Napsal : 11/11/2019 9:55 pm
Antimix
(@antimix)
Reputable Member
Topic starter answered:
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@volker-jaenisch

Interesting. I will check.

May be the original Prusa repository has been changed to allow the Linux build. As you may know, the forked Repositories are not synced with the MAIN original, and they require a periodic check and update.

 

Napsal : 11/11/2019 10:32 pm
Volker Jaenisch
(@volker-jaenisch)
Trusted Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

Dear @antimix

The Prusa-slic3r has supported Linux builds since the beginning.

I copied the broken file from gh:master and the cmake process comes up with no problem. The build also started and is currently running. I will keep you informed of the outcome.

Cheers,

Volker

Napsal : 11/11/2019 11:57 pm
Volker Jaenisch
(@volker-jaenisch)
Trusted Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

The build failed.Here the list of broken files:

resources/profiles/PrusaResearch.ini:<<<<<<< HEAD
resources/profiles/PrusaResearch.ini:<<<<<<< HEAD
resources/profiles/PrusaResearch.ini:<<<<<<< HEAD
resources/profiles/PrusaResearch.ini:<<<<<<< HEAD
resources/profiles/PrusaResearch.ini:<<<<<<< HEAD
Übereinstimmungen in Binärdatei resources/fonts/NotoSans-Regular.ttf
src/build-utils/CMakeLists.txt~:<<<<<<< HEAD
src/build-utils/CMakeLists.txt~:<<<<<<< HEAD
src/slic3r/GUI/GUI_App.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.hpp:<<<<<<< HEAD
src/slic3r/GUI/Field.cpp:<<<<<<< HEAD
src/slic3r/GUI/Field.cpp:<<<<<<< HEAD
src/slic3r/GUI/Tab.cpp:<<<<<<< HEAD
src/slic3r/GUI/Tab.cpp:<<<<<<< HEAD
src/slic3r/GUI/Tab.cpp:<<<<<<< HEAD
src/slic3r/GUI/PresetBundle.cpp:<<<<<<< HEAD
src/slic3r/GUI/PresetBundle.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/ConfigManipulation.cpp:<<<<<<< HEAD
src/slic3r/GUI/GUI_ObjectList.cpp:<<<<<<< HEAD
src/slic3r/GUI/GUI_ObjectList.cpp:<<<<<<< HEAD
src/slic3r/GUI/GUI_ObjectList.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/slic3r/GUI/3DScene.cpp:<<<<<<< HEAD
src/libslic3r/Format/3mf.cpp:<<<<<<< HEAD
src/libslic3r/Format/3mf.cpp:<<<<<<< HEAD
src/libslic3r/Format/AMF.cpp:<<<<<<< HEAD
src/libslic3r/Format/AMF.cpp:<<<<<<< HEAD
src/libslic3r/GCode.hpp:<<<<<<< HEAD
src/libslic3r/Model.cpp:<<<<<<< HEAD

Cheers,

Volker

Napsal : 12/11/2019 12:37 am
Volker Jaenisch
(@volker-jaenisch)
Trusted Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@antimix

Any news?

I can make a new fork and join in your changes if this helps. I am no C++ hero but capable enough.

I really need your code since my MMU stucks with to big tips and I hope that your algorithm may be a help.

Cheers,

Volker

Napsal : 14/11/2019 12:35 am
Volker
(@volker)
Estimable Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

I experiencing the same Problem and I'm not able to compile a Windows version by my own (neither the original one nor the drippling). I succeeded in compiling the dependencies (with a lot of warnings), but failed by compiling the main program.

Volker

Napsal : 19/11/2019 5:55 am
Snag3d
(@snag3d)
Active Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

is there a 2.3 version of this slicer? im having issues switching between them since installing official 2.3.

i have no idea how do do this myself so having it compiled would be great 🙂

Napsal : 16/01/2021 10:47 am
JoanTabb
(@joantabb)
Veteran Member Moderator
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@shane-6

Hi Shane, 

Prusa slicer is now full release
you can download it as part of the drivers package on this page

https://www.prusa3d.com/drivers/
regards Joan

I try to make safe suggestions,You should understand the context and ensure you are happy that they are safe before attempting to apply my suggestions, what you do, is YOUR responsibility. Location Halifax UK

Napsal : 16/01/2021 12:30 pm
Antimix
(@antimix)
Reputable Member
Topic starter answered:
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

Hello,

I already released the"DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.2.0, (get it if you don't have) and now that the original PrusaSlicer has been updated again by Prusa to 2.3.0, so I will try also to release soon a new corresponding Dribbling version.

For now I will try to close this topic, and post a new one once I will release the new 2.3.0 version.

Regards

Napsal : 16/01/2021 7:26 pm
Snag3d
(@snag3d)
Active Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@antimix

I have the 2.2 version, I love how much it actually helps I have jobs with 800+ tool changes that work flawlessly thanks to the feature you added 🙂 

Im really exited for the 2.3 version with dribbling and ironing 🙂 

Thank you for putting this together and keeping it updated, really appreciated 🙂

 
Napsal : 16/01/2021 10:29 pm
Yveske
(@yveske)
Estimable Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@antimix

Any chance of you contacting Prusa to have your mods integrated in the original version ?

Having problems with bed adhesion every morning...

Napsal : 24/01/2021 7:00 am
Snag3d
(@snag3d)
Active Member
RE: PrusaSlicer "DRIBBLING VERSION" for MMU2 updated to latest PrusaSlicer 2.1.0-rc

@yveske

I second this this modification in the slicer is the best thing to happen to mmu

Napsal : 25/01/2021 4:39 am
Stránka 2 / 3
Share: