mishu_28nmv wrote:Sorry for filling your post with my problem!
I did insert now G1 Z10 F6000 as start script for the second colour. In 15 minutes I will see the result.
If you did that then it is going to move the head to the 10mm position, not 10mm. So if you print is above 10mm it will crush the print. If it is below the 10mm point it will move to it. You have to figure out at what height you want the change at and put that the value in you need to be at in regards to that height.
The issue is what system is your printer currently set at. Relative or Absolute positioning. If set for relative which is usually not the case by default it will move in regards to the last position and simply add the value to the current value.
If set for absolute then it will treat the value used as the target coordinates and move to that value meaning if the value you put in is less than the current value it will crush what has been printed.
G90 and G91 – Set Positioning Mode
Your printer can use either absolute or relative positioning. Absolute positioning means that you will be telling your 3D printer to move an exact XYZ coordinate. Relative positioning is used when you want to tell the printer how far it should move from the current location. Send a G90 command to tell your printer to use absolute positioning, or a G91 for relative positioning. The majority of your gcode file will likely use absolute positioning, since the slicer has already determined the exact XYZ coordinates to move to. However, if you don’t know the previous position of the toolhead, or you simply know that you want to move the head a certain distance along an axis, you can use relative positioning. While G90 and G91 control the positioning mode for the X, Y, and Z axes, you can also use M82 or M83 to set your extruder (E-axis) to absolute or relative positioning.
Arguments:
None
Example usage:
G90 ; use absolute positioning for the XYZ axes
G1 X10 F3600 ; move to the X=10mm position on the bed
G1 X20 F3600 ; move to X=20mm
G91 ; use relative positioning for the XYZ axes
G1 X10 F3600 ; move 10mm to the right of the current location
G1 X10 F3600 ; move another 10mm to the right
You need to look at your gcode your slicer is generating and see what system it is setting for when it begins the print to know how to set your move. You may need to add G90 or G91 to your move script in order to change the move system for the time you need it for then change it back if necessary.
Printing since 2009 and still love it!
Anycubic 4MAX best $225 ever invested.
Voxelabs Proxima SLA. 6 inch 2k Mono LCD.
Anycubic Predator, massive Delta machine. 450 x 370 print envelope.