SoftFever / OrcaSlicer

G-code generator for 3D printers (Bambu, Prusa, Voron, VzBot, RatRig, Creality, etc.)
https://discord.gg/P4VE9UY9gJ
GNU Affero General Public License v3.0
5.86k stars 669 forks source link

Minor improvements & fixes for Ender-3 V3 KE #5743

Closed cochcoder closed 1 week ago

cochcoder commented 1 week ago

As mentioned with this comment

Orel-A commented 1 week ago

The machine_pause_gcode should remain the same, only change_filament_gcode should be changed to M600. The M600 gcode is a pause and a retraction of filament: image

cochcoder commented 1 week ago

The machine_pause_gcode should remain the same, only change_filament_gcode should be changed to M600. The M600 gcode is a pause and a retraction of filament: image

Thanks for pointing this out! It has been reverted.

Orel-A commented 5 days ago

@cochcoder There is a problem with this line in Machine End G-code: G1 X5 Y5 F3000 ;Wipe out It caused me today an out of bound error. The print hanged without finishing and stuck there. We should rethink these 3 lines:

G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out

What do you think?

cochcoder commented 3 days ago

@cochcoder There is a problem with this line in Machine End G-code: G1 X5 Y5 F3000 ;Wipe out It caused me today an out of bound error. The print hanged without finishing and stuck there. We should rethink these 3 lines:

G1 E-2 F2700 ;Retract a bit
G1 E-2 Z0.2 F2400 ;Retract and raise Z
G1 X5 Y5 F3000 ;Wipe out

What do you think?

How tall was the print? I think it went up too high in the end due to not checking its current height.

Orel-A commented 3 days ago

It went out of bound on the X-axis.

image

cochcoder commented 3 days ago

Can you send me tbd project file?

Orel-A commented 3 days ago

The model file is under copyright license. https://www.crealitycloud.com/model-detail/659aa4ff2063ad89b7be1e6a The part being printed is the MOONLEFTUP.stl file. Downsized to 80% (aside from the height) which is 216mm x 216mm x 30mm.

cochcoder commented 3 days ago

Are you able to recreate the error by using a small piece of a cube? If so can you upload that project file?

Orel-A commented 3 days ago

Here: Cube Error.zip Edit: Accidentally opened it in BambuStudio, download it now again.

image

Orel-A commented 2 days ago

Any conclusions?