X-In/1-Out Non-Mixing Extruder Config

Yes I am using the Sonic Pad. Those errors are probably mostly because I broke the hotend thermistor, but that’s righted now. I am newer to the space so I apologize for not thinking of what version my hardware is capable of.

@DrumClock I find your setup interesting.

Is the “Shared Pin” setup your method to mimic the deprecated “Shared Heater” option that was in the [extruder] object?

-James

Yes, I discussed it with a friend and it is probably the best way
to solve it when the “Shared Heater” is no longer functional.

-Petr

I have an old A10M with a mixing extruder. Following the above I got it working with a extruder and a extruder stepping object.
I defined T0 and T1 like above for single color prints. I added a T2 macro with a mix of 50% from both filaments and even added a M163 gcode macro to enable other mixing settings. I had not been able to find those online, so I am happy to provide it here for others:

[gcode_macro T3]
gcode:
    SET_EXTRUDER_ROTATION_DISTANCE EXTRUDER=extruder DISTANCE={8.437 * 0.5} # 50%
    SYNC_EXTRUDER_MOTION EXTRUDER=extruder MOTION_QUEUE=extruder # Add e0
    SYNC_EXTRUDER_MOTION EXTRUDER=extruder1 MOTION_QUEUE=extruder # Add e1
    SET_EXTRUDER_ROTATION_DISTANCE EXTRUDER=extruder1 DISTANCE={8.231 *0.5} # 50%

[gcode_macro M163]
gcode:
  {% set rot_dist0 = params.ROT_DIST_0|default(8.437)|float %} # define in default the rotation distance of the extruder
  {% set rot_dist1 = params.ROT_DIST_1|default(8.231)|float %} # define in default the rotation distance of the extruder
  {% if 'P' in params %}
      SET_EXTRUDER_ROTATION_DISTANCE EXTRUDER=extruder DISTANCE={ rot_dist0 * params.P|float / 100}
      SYNC_EXTRUDER_MOTION EXTRUDER=extruder MOTION_QUEUE=extruder # Add e0
      SYNC_EXTRUDER_MOTION EXTRUDER=extruder1 MOTION_QUEUE=extruder # Add e1
      SET_EXTRUDER_ROTATION_DISTANCE EXTRUDER=extruder1 DISTANCE={ rot_dist1 * (100-params.P|float) / 100 }
  {% else %}
      # default 50% mix
      SET_EXTRUDER_ROTATION_DISTANCE EXTRUDER=extruder DISTANCE={rot_dist0 * 50 / 100 }
      SYNC_EXTRUDER_MOTION EXTRUDER=extruder MOTION_QUEUE=extruder # Add e0
      SYNC_EXTRUDER_MOTION EXTRUDER=extruder1 MOTION_QUEUE=extruder # Add e1
      SET_EXTRUDER_ROTATION_DISTANCE EXTRUDER=extruder1 DISTANCE={rot_dist1 * 50 / 100 }
  {% endif %}

you need to change the rotation distance values to match to your printer in T2 and M163

2 Likes

the above is just the concept. With it a 50% mix can be set by m163 P50.
But the usage of M163 and the following M164 is different. e.g.:

M163 S0 P84.08
M163 S1 P15.92
M168 S0

I will change the macro soon to be able to work with standard M163 and M164 sequences.

1 Like

Is there any way to configure TMC drivers with the extruder_stepper? That way I can still have them in stealthchop.

Literally created an account to say thank you so so much for this!!!

I’ve managed to get a 2in1 out non mixing extruder working on one of my Vorons using 2 Mobius M4 extruders with this :smiley: :smiley:

An picture to show the very first print, happening as I type!

Love the 3d printing community to much, THANK YOU!! Totally renewed my love for FDM printing!!

3 Likes

A post was split to a new topic: Mixing Extruder

hey there, for a single hotend 2x1 what is the expected behavior of SYNC_EXTRUDER_MOTION EXTRUDER=belted_extruder MOTION_QUEUE=extruder and STEPPER_BUZZ STEPPER=extruder? I am trying to sanity check things and can only move the first extruder. Is there a different command for extruder_steppers for buzzing?

[gcode_macro T0]
gcode:
    # Deactivate stepper in my_extruder_stepper
    SYNC_EXTRUDER_MOTION EXTRUDER=belted_extruder MOTION_QUEUE=
    # Activate stepper in extruder
    SYNC_EXTRUDER_MOTION EXTRUDER=extruder MOTION_QUEUE=extruder

[gcode_macro T1]
gcode:
    SYNC_EXTRUDER_MOTION EXTRUDER=extruder MOTION_QUEUE=
    # Activate stepper in my_extruder_stepper
    SYNC_EXTRUDER_MOTION EXTRUDER=belted_extruder MOTION_QUEUE=extruder
[stepper_x]
step_pin: P2.2
dir_pin: !P2.6
enable_pin: !P2.1
microsteps: 16
rotation_distance: 40
endstop_pin: ^P1.29 #!P1.29
position_endstop: 0
position_max: 235
homing_speed: 50

[stepper_y]
step_pin: P0.19
dir_pin: !P0.20
enable_pin: !P2.8
microsteps: 16
rotation_distance: 40
endstop_pin: ^P1.28 #!P1.28
position_endstop: 0
position_max: 235
homing_speed: 50

[stepper_z]
step_pin: P0.22
dir_pin: P2.11
enable_pin: !P0.21
microsteps: 16
rotation_distance: 8
endstop_pin: probe:z_virtual_endstop
#endstop_pin: !P1.27
#position_endstop: 0.0
position_max: 300

###############################################
##  Probing/Mesh
###############################################

[bltouch]
#[probe]
sensor_pin: ^P0.10
#sensor_pin: ^P1.27  # Pull-up (^ symbol) needed in open drain mode
control_pin: P2.0
# Some BLTouch V3 and many clones apparently require this, though mine didnt:
#pin_up_touch_mode_reports_triggered: true
#flavor: genuine_smart_3.1
x_offset: -48
y_offset: -15
z_offset: 1.4
#probe_with_touch_mode: true
stow_on_each_sample: false


[bed_mesh]
speed: 250
horizontal_move_z: 8
mesh_min: 20,15
mesh_max: 205,215
probe_count: 3,3
fade_start: 1.0
mesh_pps: 2,2

[safe_z_home]
home_xy_position: 80,80
speed: 80.0
z_hop: 10.0
z_hop_speed: 10.0

[extruder] # extruder0
step_pin: P2.13
dir_pin: !P0.11
enable_pin: !P2.12
microsteps: 16
rotation_distance: 33.500
nozzle_diameter: 0.400
filament_diameter: 1.750
heater_pin: P2.7
sensor_type: EPCOS 100K B57560G104F
sensor_pin: P0.24
control: pid
pid_Kp: 22.2
pid_Ki: 1.08
pid_Kd: 114
min_temp: 0
max_temp: 260

[extruder_stepper belted_extruder]
extruder: extruder
step_pin: P1.15
dir_pin: P1.14
enable_pin: !P1.16
microsteps: 16
rotation_distance: 33.500
# 2 x 1 hotend
#heater_pin: P2.4
#sensor_pin: P0.23
#...

[gcode_macro T0]
gcode:
    {action_respond_info("Switching from belted_extruder to extruder.")}
    # Deactivate stepper in my_extruder_stepper
    SYNC_EXTRUDER_MOTION EXTRUDER=belted_extruder MOTION_QUEUE=
    # Activate stepper in extruder
    SYNC_EXTRUDER_MOTION EXTRUDER=extruder MOTION_QUEUE=

[gcode_macro T1]
gcode:
    {action_respond_info("Switching from extruder to belted_extruder.")}
    SYNC_EXTRUDER_MOTION EXTRUDER=extruder MOTION_QUEUE=
    # Activate stepper in my_extruder_stepper
    SYNC_EXTRUDER_MOTION EXTRUDER=belted_extruder MOTION_QUEUE=

[gcode_macro ACTIVATE_EXTRUDER]
description: Replaces built-in macro for a X-in, 1-out extruder configuration SuperSlicer fix
rename_existing: ACTIVATE_EXTRUDER_BASE
gcode:
    {% if 'EXTRUDER' in params %}
      {% set ext = params.EXTRUDER|default(EXTRUDER) %}
      {% if ext == "extruder"%}
        {action_respond_info("Switching to extruder.")}
        T0
      {% elif ext == "belted_extruder" %}
        {action_respond_info("Switching to belted_extruder.")}
        T1
      {% else %}
        {action_respond_info("EXTRUDER value being passed.")}
        ACTIVATE_EXTRUDER_BASE EXTRUDER={ext}
      {% endif %}
    {% endif %}

[delayed_gcode activate_default_extruder]
initial_duration: 1
gcode:
    ACTIVATE_EXTRUDER EXTRUDER=belted_extruder


[heater_bed]
heater_pin: P2.5
sensor_type: EPCOS 100K B57560G104F
sensor_pin: P0.25
control: pid
pid_Kp: 54.027
pid_Ki: 0.770
pid_Kd: 948.182
min_temp: 0
max_temp: 130

#[extruder]
#step_pin: P2.13
#dir_pin: !P0.11
#enable_pin: !P2.12
#microsteps: 16
#rotation_distance: 33.500
#nozzle_diameter: 0.400
#filament_diameter: 1.750
#heater_pin: P2.7
#sensor_type: EPCOS 100K B57560G104F
#sensor_pin: P0.24
#control: pid
#pid_Kp: 22.2
#pid_Ki: 1.08
#pid_Kd: 114
#min_temp: 0
#max_temp: 260

#[heater_bed]
#heater_pin: P2.5
#sensor_type: EPCOS 100K B57560G104F
#sensor_pin: P0.25
#control: pid
#pid_Kp: 54.027
#pid_Ki: 0.770
#pid_Kd: 948.182
#min_temp: 0
#max_temp: 130

[fan]
pin: P2.3

[mcu]
serial: /dev/serial/by-id/usb-Klipper_lpc1769_1B300211E910D59515EADA61C12000F5-if00

[printer]
kinematics: cartesian
max_velocity: 400
max_accel: 500
max_z_velocity: 10
max_z_accel: 100


########################################
# TMC2208 configuration
########################################

#[tmc2208 stepper_x]
#uart_pin: P1.10
#run_current: 0.800
#stealthchop_threshold: 999999
#
#[tmc2208 stepper_y]
#uart_pin: P1.9
#run_current: 0.800
#stealthchop_threshold: 999999
#
#[tmc2208 stepper_z]
#uart_pin: P1.8
#run_current: 0.650
#stealthchop_threshold: 999999
#
#[tmc2208 extruder]
#uart_pin: P1.4
#run_current: 0.800
#stealthchop_threshold: 999999
#
#[tmc2208 extruder1]
#uart_pin: P1.1
#run_current: 0.800
#stealthchop_threshold: 999999


########################################
# TMC2130 configuration
########################################

#[tmc2130 stepper_x]
#cs_pin: P1.10
#spi_software_miso_pin: P0.5
#spi_software_mosi_pin: P1.17
#spi_software_sclk_pin: P0.4
#run_current: 0.800
#stealthchop_threshold: 999999
#diag1_pin: P1.29

#[tmc2130 stepper_y]
#cs_pin: P1.9
#spi_software_miso_pin: P0.5
#spi_software_mosi_pin: P1.17
#spi_software_sclk_pin: P0.4
#run_current: 0.800
#stealthchop_threshold: 999999
#diag1_pin: P1.28

#[tmc2130 stepper_z]
#cs_pin: P1.8
#spi_software_miso_pin: P0.5
#spi_software_mosi_pin: P1.17
#spi_software_sclk_pin: P0.4
#run_current: 0.650
#stealthchop_threshold: 999999
#diag1_pin: P1.27

#[tmc2130 extruder]
#cs_pin: P1.4
#spi_software_miso_pin: P0.5
#spi_software_mosi_pin: P1.17
#spi_software_sclk_pin: P0.4
#run_current: 0.800
#stealthchop_threshold: 999999
#diag1_pin: P1.26

#[tmc2130 extruder1]
#cs_pin: P1.1
#spi_software_miso_pin: P0.5
#spi_software_mosi_pin: P1.17
#spi_software_sclk_pin: P0.4
#run_current: 0.800
#stealthchop_threshold: 999999
#diag1_pin: P1.25


########################################
# EXP1 / EXP2 (display) pins
########################################

[board_pins]
aliases:
    # EXP1 header
    EXP1_1=P1.30, EXP1_3=P1.18, EXP1_5=P1.20, EXP1_7=P1.22, EXP1_9=<GND>,
    EXP1_2=P0.28, EXP1_4=P1.19, EXP1_6=P1.21, EXP1_8=P1.23, EXP1_10=<5V>,
    # EXP2 header
    EXP2_1=P0.17, EXP2_3=P3.26, EXP2_5=P3.25, EXP2_7=P1.31, EXP2_9=<GND>,
    EXP2_2=P0.15, EXP2_4=P0.16, EXP2_6=P0.18, EXP2_8=<RST>, EXP2_10=<NC>
    # Pins EXP2_1, EXP2_6, EXP2_2 are also MISO, MOSI, SCK of bus "ssp0"

Remove the “extruder” from your extruder_stepper config. This will cause the two steppers to run together.


[extruder_stepper belted_extruder]
extruder:
step_pin: P1.15
dir_pin: P1.14
enable_pin: !P1.16
microsteps: 16
rotation_distance: 33.500
# 2 x 1 hotend
#heater_pin: P2.4
#sensor_pin: P0.23
#...

Stepper_buzz I believe is just:

STEPPER_BUZZ STEPPER=belted_extruder

Or

STEPPER_BUZZ STEPPER=“extruder_stepper belted_extruder”

I’m not home to test it out, so I don’t remember.

-James

I tried both and neither worked. I will try the buzzer command tomorrow. It’s weird though because extruder0 moves no matter the T0/T1 state being able to buzz ex1 will be helpful.

Did you remove the “extruder:” value from the belted extruder config?

Both are moving simultaneously because both steppers are synchronized together.

Yes, I removed the extruder assignment, no dice. The thin is that both extruders would not move in that config, so I’m thinking something else is up. I’m away from the printer now, I will update when I can.

Hello Here is my current working config (still Bata working on calibration) for an BTT octopus with a 3 in to one head , three BTT runout Encoder switch three Bondtech extruders , Duel Z steppers and Closed loop X and Y steppers . Enjoy and I hope it helps anyone who needs it.

printer.cfg (17.1 KB)

Hi there.
I stroggle to get multicolor Prints working with PrusaSlicer 2.6 and Klipper.
I have a BiQu 2in1 Hotend.

All the Settings are like in this Post but at the second colorchange before the Printhead moves to the whipetower i still get: “Unable to infer active extruder stepper” because of the Set pressure advance setting from the slicer in the g Code

Help please!

Regards

Tim

printer.cfg:

[extruder]
step_pin: P2.13
dir_pin: !P0.11
enable_pin: !P2.12
microsteps: 16
rotation_distance: 32.215
nozzle_diameter: 0.600
filament_diameter: 1.750
heater_pin: P2.7
sensor_type: EPCOS 100K B57560G104F
sensor_pin: P0.23
min_temp: 0
max_temp: 260
max_extrude_cross_section: 50.0

[extruder_stepper extrudersecondary]
extruder:
step_pin: P1.15
dir_pin: P1.14
enable_pin: !P1.16
microsteps: 16
rotation_distance: 32.215

[tmc2209 extruder]
uart_pin: P1.4
run_current: 0.800

[tmc2209 extruder_stepper extrudersecondary]
uart_pin: P1.1
run_current: 0.800

# Activate the primary extruder
[gcode_macro T0]
gcode:
    SYNC_EXTRUDER_MOTION EXTRUDER="extruder" MOTION_QUEUE="extruder"
	SYNC_EXTRUDER_MOTION EXTRUDER="extrudersecondary" MOTION_QUEUE=""
    #SAVE_VARIABLE VARIABLE=currentextruder VALUE='"extruder"'
    #SAVE_VARIABLE VARIABLE=active_tool VALUE='"T0"'
    
[delayed_gcode activate_default_extruder]
initial_duration: 1
gcode:
    ACTIVATE_EXTRUDER EXTRUDER=extruder

[gcode_macro M104]
description: Replaces built-in gcode to not specify Tx due to single extruder
rename_existing: M104.1
gcode:
    {% set s = params.S|default(0)|float %}
    {% set t = params.T|default(0)|int %}
    {% if 'S' in params %}
      {%  if 'T' in params %}
        M104.1 S{s}
      {% else %}
        M104.1 S{s}
      {% endif %}
    {% endif %}

# Activate the secondary extruder
[gcode_macro T1]
gcode:
    SYNC_EXTRUDER_MOTION EXTRUDER="extruder" MOTION_QUEUE=""
	SYNC_EXTRUDER_MOTION EXTRUDER="extrudersecondary" MOTION_QUEUE="extruder"
    #SAVE_VARIABLE VARIABLE=currentextruder VALUE='"extruder1"'
    #SAVE_VARIABLE VARIABLE=active_tool VALUE='"T0"'
    
[gcode_macro ACTIVATE_EXTRUDER]
description: Replaces built-in macro for a X-in, 1-out extruder configuration SuperSlicer fix
rename_existing: ACTIVATE_EXTRUDER_BASE
gcode:
    {% if 'EXTRUDER' in params %}
      {% set ext = params.EXTRUDER|default(EXTRUDER) %}
      {% if ext == "extruder"%}
        {action_respond_info("Switching to extruder0.")}
        T0
      {% elif ext == "extrudersecondary" %}
        {action_respond_info("Switching to extrudersecondary.")}
        T1
      {% else %}
        {action_respond_info("EXTRUDER value being passed.")}
        ACTIVATE_EXTRUDER_BASE EXTRUDER={ext}
      {% endif %}
    {% endif %}
   

PrusaSlicer Settings:

  • Printer Start G-Code:
;Tool: [current_extruder]
{if current_extruder == 0 then
  global tool_name="extruder" 
elsif current_extruder == 1 then
  global tool_name="extrudersecondary"
else
  global tool_name="unknown"
endif}

{
"ACTIVATE_EXTRUDER EXTRUDER=" + tool_name + "
";
"SET_PRESSURE_ADVANCE ADVANCE=0 EXTRUDER="+ tool_name + "
";
}

M190 S60
M109 S190
START_PRINT BED=[first_layer_bed_temperature] HOTEND=[first_layer_temperature[initial_extruder]]
  • G-Code for Toolchange:
;Tool Change G-code
{if layer_num > 1 then
 
  if next_extruder == 0 then
    global tool_name="extruder" 
  elsif next_extruder == 1 then
    global tool_name="extrudersecondary"
  else
    global tool_name="unknown"
  endif

  "ACTIVATE_EXTRUDER EXTRUDER=" + tool_name + "
  ";

else

endif}
  • Filament Start G-Code:
; Filament specific Start G-code
;
;Tool: [current_extruder]
{if current_extruder == 0 then
  global tool_name="extruder" 
elsif current_extruder == 1 then
  global tool_name="extrudersecondary"
else
  global tool_name="unknown"
endif}
;
;
{ if tool_name == "extruder" then
  "; PLA PA
  ";
  "SET_PRESSURE_ADVANCE ADVANCE=0.38  EXTRUDER=" + tool_name + "
  ";
elsif tool_name == "extruder1" then
  "SET_PRESSURE_ADVANCE ADVANCE=0.38 EXTRUDER=" + tool_name + "
  ";
else
endif }
;
1 Like

Here is my current working config for a 3 in 1 out… with a runout encoder. I hope it helps in any way…

printer (2).cfg (20.4 KB)

@Snakn1 : If you want to upload a config file, then

  • Do it as file using
    grafik

  • Or as preformatted text using
    grafik

You can find both in the editor’s tool bar.

As plain text, it looks quite meshed up and due to deleted spaces, it can cause some trouble.

Which Slicer are you using?
The printer.cfg looks quite the same as my one, but i still are not able to print multi color with PrusaSlicer.

OK first I want to say my config is correct yet… I notice that the T0 is the only one that is trigging the encoder runout switch and pausing. For some yet unknown reason the T1 and T2 does not trigger. The display will show empty like it should but it does not pause. So that being said the tool switching and over all printing is good. I have used simplified 3D (before the upgrade V4) and Cura all with out mods. All my old gcode’s work and un-mod new one from both works on this config.