And I tried to modify the start G-Code because the second extruder wasn't there, but it doesn't work and now the bed has a little movement when start heat but after a 30 seconds it returns at home and works normaly
Here is the G-code modify by me:
; Default start code
G28 ; Home extruder
G1 Z15 F{Z_TRAVEL_SPEED}
M107 ; Turn off fan
G90 ; Absolute positioning
M82 ; Extruder in absolute mode
{IF_BED}M190 S{BED}
; Activate all used extruder
{IF_EXT0}M104 T0 S{TEMP0}
{IF_EXT1}M104 T1 S{TEMP1}
G92 E0 ; Reset extruder position
G92 E1 ; Reset extruder position
; Wait for all used extruders to reach temperature
{IF_EXT0}M109 T0 S{TEMP0}
; Wait for all used extruders to reach temperature
{IF_EXT1}M109 T1 S{TEMP1}
In bold is the code that I modify