Extrusion
-
Hi
I am facing problem in running two extruder for printing mixed material.
After sending g codeG1 E100:50 F2400
And also
G1 X100 E100:50
directly from command, extrusion taking place.
Fallowing this I am uploading G code file I am trying to print a single line , it showing error like this![alt text]([image url](link url ))
In which it saying multiple parameter in E with g code is not supported with absolute mode
G90Then after I tried to write g code in incremental mode by adding line
G91 G0 X50 Y0 F2400 G1 X100 E100:50 F2400
Even it is showing same problem.
Any one can guide me for the same
Thanks
-
set relative extrusion mode by adding M83 to your config.g
-
@oliof thank you sir ,
I will try it.
-
It also may be worth checking out "M567: Set tool mix ratios".
-
@DocTrucker thanks you