Maybe I am doing this wrong but I do not think I am lol.
I am trying to get Dagoma Neva set up working, and am using Cura for the slicer in the slicer options and have the following slicer start gcode:
G90
G28
M109 S100
G29
M104 S{material_print_temperature_layer_0}
G0 X0 Y-85
G0 Z0.26
M109 S{material_print_temperature_layer_0}
M82
G92 E0
G1 F200 E6
G92 E0
G1 F200 E-3.5
G0 Z0.15
G0 X10
G0 Z3
G1 F6000
When I run this what happens is it will just grab the s100 command and ignore the rest. So it stays at 100 and never changes. If I manually change the lines M104 S{material_print_temperature_layer_0}, and M109 S{material_print_temperature_layer_0} to a temperature it works find, and changes the temp just fine. Why doesn’t this command work like it should??? I need to be able to run the calibration codes with the head at a non printing temp to avoid oozing, and then go up to printing temp, how do I do this??