Mixing Extruder with 3 seperate heaters
Hi,
I want to use the mixing extruder feature but also heat up all three heaters. I have a special designed nozzle that is not a diamond hotend.
How can I do that? Everytime I select the feature in the configuration tool I can only heat up 1 heater. I tried to change the firmware manually and I can see all 3 temperatures now but when I start to heat only the first heater starts heating like before.
I want to use the mixing extruder feature but also heat up all three heaters. I have a special designed nozzle that is not a diamond hotend.
How can I do that? Everytime I select the feature in the configuration tool I can only heat up 1 heater. I tried to change the firmware manually and I can see all 3 temperatures now but when I start to heat only the first heater starts heating like before.
Comments
,{
2,EXT2_X_OFFSET,EXT2_Y_OFFSET,EXT2_Z_OFFSET,EXT2_STEPS_PER_MM,EXT2_ENABLE_PIN,EXT2_ENABLE_ON,
EXT2_MAX_FEEDRATE,EXT2_MAX_ACCELERATION,EXT2_MAX_START_FEEDRATE,0,EXT2_WATCHPERIOD
,EXT2_WAIT_RETRACT_TEMP,EXT2_WAIT_RETRACT_UNITS
#if USE_ADVANCE
#if ENABLE_QUADRATIC_ADVANCE
,EXT2_ADVANCE_K
#endif
,EXT2_ADVANCE_L,EXT2_ADVANCE_BACKLASH_STEPS
#endif
#if MIXING_EXTRUDER > 0
,10,10,{10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10}
#endif
,{
2,EXT2_TEMPSENSOR_TYPE,EXT2_SENSOR_INDEX,EXT2_HEAT_MANAGER,0,0,0,0
#if TEMP_PID
,0,EXT2_PID_INTEGRAL_DRIVE_MAX,EXT2_PID_INTEGRAL_DRIVE_MIN,EXT2_PID_PGAIN_OR_DEAD_TIME,EXT2_PID_I,EXT2_PID_D,EXT2_PID_MAX,0,0,0,{0,0,0,0}
#endif
,0,0,0,EXT2_DECOUPLE_TEST_PERIOD
}
,ext2_select_cmd,ext2_deselect_cmd,EXT2_EXTRUDER_COOLER_SPEED,0,0,0
#if EXTRUDER_JAM_CONTROL
,0,0,10,0,0
#endif
}
#endif
How do I need to change this code? I think this is the important part to change?
where you see that when MIXING_EXTRUDER is defined code parts get omitted for extruder > 0 which is just what you do not want in your case.