; --- SECTION: DRIVES (MOVEMENT SECTION) & ENDSTOPS ---
M667 S1 ; Enable coreXY mode
M569 P0 S0 ; Drive 0 goes forwards, CoreXY_1
M569 P1 S1 ; Drive 1 goes forwards, CoreXY_2
M569 P2 S1 ; Drive 2 goes forwards, Z Motor
M569 P3 S0 ; Drive 3 goes forwards, Left Extruder
M569 P4 S1 ; Drive 4 goes forwards, Right Extruder
P3
and P4
drive directions with the S
parameter. For example, if my left extruder was going backwards, I would change the command to go from M569 P3 S0
M569 P3 S1.
M563
commands, this configures the tool:
M563 P0 D0:1 H2 F2 S"Mixing" ; Define mixing tool
M563 P1 D0 H2 F2 S"Mixing as Single Left" ; mixing nozzle only using left extruder motor
M563 P2 D1 H2 F2 S"Mixing as Single Right" ; mixing nozzle only using right extruder motor
D
parameter) you will have to change the drive. If it was using D1
change it to D0
and vice versa. You are telling the firmware to use drive for 0 or 1 for specific tools.M563
command in order to change which tool uses which heater. This section will fix a heater that is wired to the wrong port of the Promega, or configured wrong. This will present itself in the form of a heater fault, or a thermistor error value of 2000°C.The Promega configuration expects heater 1 to be assigned to the left tools and left extruder, and heater 2 to be assigned to the right tools and right extruder. Remember that heater 0 is the heated bed in the configuration files. M563
commands, this configures the tool:
M563 P0 D0:1 H2 F2 S"Mixing" ; Define mixing tool
M563 P1 D0 H2 F2 S"Mixing as Single Left" ; mixing nozzle only using left extruder motor
M563 P2 D1 H2 F2 S"Mixing as Single Right" ; mixing nozzle only using right extruder motor
H
parameter) assigned to the tools above. It should be either H1
or H2
.