@GregValiant
I tried what you suggest and shortened the code as:
Search: G92 E0\nT0\nG92 E0
Replace: G0 X210 Y90 F7200\nG92 E0\nT0\nG92 E0
Check "Use regular expressions"
It works. Thank you!! The problem is resolved.
I cannot make a change in the starting code, for this is a repeated occurring codes in the gcode file. It is part of a dual printing, nozzle switch section. Thank you again!
Recommended Posts
GregValiant 1,408
The box needs to be checked (I think the backslash character makes it necessary).
If you remove all the "\r" and just leave the "\n" it should work.
When you search for a long specific snippet like that the chances of it failing certainly go up.
Have you attempted to put that move at the end of your startup gcode? If you use Cura keywords as:
M140 S{material_bed_temperature_layer_0}
G0 X210 Y90 F7200
M109 S{material_print_temperature_layer_0}
M190 S{material_bed_temperature_layer_0}
Cura will see that the temps are being set in the startup gcode and so will not add the temperature lines prior to the startup gcode. (M105 just sends a temperature message back to a print server (if you are using one or printing via USB. If you aren't then you can leave it out.)
Edited by GregValiantLink to post
Share on other sites
earlywintersnow 1
Thank you, @GregValiant! This is really helpful. I will try out and let you know.
Link to post
Share on other sites