moggieuk / ERCF-Software-V3

New software driver for ERCF control under Klipper
GNU General Public License v3.0
298 stars 63 forks source link

"Extruder not configured" with "M104 T1 S200" #56

Closed Tathar closed 1 year ago

Tathar commented 1 year ago

when commissioning my ERCF, I have an error "Extruder not configured" with the command "M104 T1 S0" generated by cura

favoritewky commented 1 year ago

You need change the single extruder with multicolor checkbox. Something like that.

Tathar commented 1 year ago

THANKS, I solved the problem by creating the macro

' [gcode_macro M104] rename_existing: M104.1 gcode: {% set TOOL = params.T|default(-1)|int %} {% set TEMP = params.S|default(0)|float %}

{% if TOOL|int == -1 %}
  M104.1 T0 S{TEMP}
{% endif %}

'