Hello,
I am testing the power failure recovery and it seems to be working well, except by the FANs configuration after calling resurrect-prologue.g
. As you can see in the code below, on ressurect-prologue.g
it is setting M106 P1 S0.00
. However, P1 is the fan for the heatbreak, which is configured as M106 P1 H1 T45 C"Fan Extruder"
. This way, the print is restarted with the heatbreak off.
Relevant content fromconfig.g
:
; Fans
M950 F0 C"fan0" Q500 A"Blower" ; Create fan 0 (blower) on pin fan0 and set its frequency
M106 P0 S0 H-1 C"Blower" ; Set fan 0 value. Thermostatic control is turned off
M950 F1 C"fan1" Q500 A"Fan Extruder" ; Create fan 1 (throat) on pin fan1 and set its frequency
M106 P1 H1 T45 C"Fan Extruder" ; Set fan 1 value. Thermostatic control is turned on
M950 F2 C"fan2" Q500 A"Filter" ; Create fan 2 (filter) on pin fan2 and set its frequency
M106 P2 S0 H-1 C"Filter" ; Set fan 1 value. Thermostatic control is turned off
Relevant content fromressurect.g
:
M98 P"resurrect-prologue.g"
M116
M290 X0.000 Y0.000 Z0.100 R0
T-1 P0
T0 P6
...
G54
M106 S0.00
M106 P1 S0.00
M116
G92 E0.00000
M83
M23 "0:/gcodes/teste-power-down.gcode"
Full files:
resurrect-prologue.g
resurrect.g
config.g
Am I missing something here? Is there any wrong configuration?
Thanks!