-
I installed Cura 4.9 today, and noticed that the Printer profile list has a "Snapmaker 2 A350" entry! Most of the settings are the same as shown in your profile, however the Printhead settings differ. So two questions:
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I also notice that their end code is slightly different. Yours: (differing lines in bold)
Theirs: (differing lines in bold)
So a third question: (For example, I notice that their end g-code says "Z{machine_width}", whereas I would expect it to be "Z{machine_height}", given the comment of "move Z up a bit".) |
Beta Was this translation helpful? Give feedback.
-
Their printhead values are different because they have access to the actual CAD models. I was simply getting it "close enough" with a tape measure. So theirs will be more physically accurate to the printer, but mine just give an extra couple of mm of clearance is all (I measured a little extra than needed to be safe). It's purely to stop the head bumping into other parts when you print models in sequence (which most people won't need to do that often, if ever, really). As for the end gcode settings, the only difference really is the how we move things. They move the Z up, then the X across, then the Y forward in separate operations. Mine moves the Z up and then brings the X & Y to zero at the same time to save a second or two of time. That's all, really. It's strange that they're using "{machine_width}" rather than "{machine_height}" for the Z axis. Personally, I just dialled the height in manually. A350 printers will go to the 330mm (the max height it can print), A250 and A150 printers will go to whatever their max height is and stop because they can't go any higher. But I probably should modify mine to use {machine_height}. |
Beta Was this translation helpful? Give feedback.
Their printhead values are different because they have access to the actual CAD models. I was simply getting it "close enough" with a tape measure. So theirs will be more physically accurate to the printer, but mine just give an extra couple of mm of clearance is all (I measured a little extra than needed to be safe). It's purely to stop the head bumping into other parts when you print models in sequence (which most people won't need to do that often, if ever, really).
As for the end gcode settings, the only difference really is the how we move things. They move the Z up, then the X across, then the Y forward in separate operations. Mine moves the Z up and then brings the X & Y to zero at…