orginal PP:
function pendown()
if (preheat > 0.001) then
-- modaltext (" G00")
-- modalnumber (" Z", cutheight * scale, "0.0000")
text (" G04 P")
number (preheat,"0.###")
eol()
end
I want some like :
function pendown()
if (preheat > 0.001) then
-- modaltext (" G00")
-- modalnumber (" Z", cutheight * scale, "0.0000")
text (" M7\n")
text (" G04 P")
number (preheat,"0.###")
text (" M9")
text (" G04 P1")
eol()
end
but dont know how do comands in new line set
now have linelike :
"M7 G04 P10 M9 G04 P1"
I was try like ... text (M7\n) but nothing hapends...where is wrong word or ...
help