Slicer CURA turning off the table and the extruder

Slicer (CURA 4.3.0)

What is the problem? Slicer turning off table and extruder

What did you already try to solve it? Start / End Gcode is the same in both, Simplify and Cura.

Logs (octoprint.log, serial.log or output on terminal tab, ...)

Example GCODE file ;Generated with Cura_SteamEngine 4.3.0-BETA
;StartGCode
M82

M190 S[bed0_temperature] T0

M104 S[extruder0_temperature] T0

G28

G90

G1 Z5 F6000

G1 X120 Y-16

G1 Z-1

G92 E0

M109 S[extruder0_temperature] T0

G1 E50 F3600

G92 E0

G1 E10 F130

G92 E0

G1 E-2 F3600

G1 X172 F1800

G1 Z5 F12000

G1 Y0

M120 P20 S50

Additional information about your setup (OctoPrint version, OctoPi version, printer, firmware...) OctoPrint : 1.3.11

That doesn't look like valid gcode to me. Anything within square brackets like that was supposed to have been expanded to some number as a macro. If it didn't in either case then you should check into why that was.

Instead of S[bed0_temperature] use S{material_bed_temperature_layer_0}
Instead of S[extruder0_temperature] use S{material_print_temperature_layer_0}

2 Likes