-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CORE One Print Profiles #8504
Comments
Those scripts are pretty rough. Here's how I ran them:
I've found at least one thing missing since the original PR, #8486 I'll happily accept pull requests to update the scripts for any missing options, make them easier to run, etc. |
The way the scripts work (specifically the Python "post-processing" that I added) is that they go through each final file you want, rewrite it so that there's no inheritance at all ("concretize"), and then build up the inheritance according to any structure you want. Your new profiles don't need to follow the inheritance structure in Prusa's original profiles. In fact, they can't, because Prusa uses a pretty complex structure of multiple inheritance to make it all work, and Orca doesn't support multi-inheritance AFAICT. What I'm saying is... I don't /think/ that the inheritance structure that's there should cause you any additional time, but it will still take time to get it all right, of course. |
Yeah I took some time yesterday to see how it all works. It looks like Prusa just use the mk4s as the base profile and tweak the acceleration and speeds for each profile. Took about an hour to build the profile manually based on the mk4s. I had to do a few adjustments to the start gcode to handle chamber temperatures (orca only has one temperature setting instead of 2 like PS). I essentially made it so if the chamber temperature is set below 35c, then it uses the temp as a nominal temperature and if it's above 35c then it's the minimum temperature. Once I have my CORE one I will post the profile here once I am able to test. Kinda sucks that OrcaSlicer doesn't support bgcode but I should be able to add it as a post processing script. Thanks for your help! |
I tried to use Prusa's command line tool to do a post-process to transform into bgcode, but it failed saying the input gcode was invalid. I didn't try to figure out why. If you work out a solution, I'd be super interested to learn what you did to make it work :) |
Yeah I am hitting that same issue 😅. I will report back if I can get it working! |
If you've made these changes in code, it'd be great to add some sort of switch to the python scripts so that they can be re-run in the future for either printer. Happy to try keep the scripts all in one place by having that. That said, keeping your own repo with core one specific code so that anyone who wants to re-import in the future can use that is also a reasonable option. |
Unfortunately I didn't use the output from the conversion scripts. Doing a bit of digging you can see that almost all CORE One Profiles inherit the MK4S Profiles. I was able to just make a new printer in Orca that was based on the MK4S and tweak 10 or so changes for the machine profile and about 10-15 settings per process profile. I just used the profile diff tool in PrusaSlicer to see the differences between the MK4S and CORE One profile. The profiles are pretty much the exact same between MK4S and CORE One except for acceleration and speed changes so it wasn't that bad to do manually. The modification of the start gcode was done in a text editor, its documented pretty well and only a few conditionals had to be swapped out |
If anyone wants to try it, here is my WIP profile. THIS IS UNTESTED. I am not responsible if you break your printer. Please be cautious when printing with it. Let me know if any changes need to be made. (might need to change extension to |
Managed to figure out the issue. Their command line tool looks for specific strings in the gcode to mark the start/end of settings as well as the source of the Gcode. OrcaSlicer uses different strings and thus fails when trying to run the converter. I made modifications and it is able to produce a gcode file however PrusaSlicer throws an error when trying to preview the bgcode file. I'm not sure if the printers will throw an error since it seems to be related to slicer settings, not the actual print code. I put my changes up on https://github.com/bwees/orca_bgcode if you want to try it out. I don't have a bgcode supported printer yet so I can't test. |
I modified the script to work as a post-processing script (in-place modification and new filename hint). Instructions are on the README |
@rcloran managed to get access to a Prusa Mini. Was able to the bgcode conversion post processing script:
and the printer had no issues printing from the file. Should be good to use with other prusa printers that support bgcode. |
I have some Core One profiles aswell. should we compare? |
Thats what i searched. Still sad that bgcode is not directly implemnted in orca |
I posted my profile here, its missing the bgcode PP script but all of the parameters are done. |
It makes sense, Bambu Slicer was designed to just transport everything in 3mf files. Prusa is also the only printer that uses bgcode (without modification). There needs to be more industry adoption before it makes sense to invest the dev time |
Is there an existing issue for this feature request?
Is your feature request related to a problem?
Is it possible to get the CORE One Print Profiles imported into OrcaSlicer? I saw that @rcloran was able to import the MK4S with his scripts. I am having a hard time getting them to work for me otherwise I would do the PR myself.
Thanks!
Which printers will be beneficial to this feature?
Others, Marlin
Describe the solution you'd like
CORE One Print Profiles added to orcaslicer
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: