Skip to main content

Product Introduction

The FilGuard Filament detector is compatible with the VZ-Hextrudort-Low extruder, supports filament runout detection, filament jam detection, and features a customizable button.

Loading...
Loading...
Loading...
Loading...
Loading...
Loading...

Wiring Tutorial

  • The onboard PH2.0 5P terminal makes wiring more convenient
Loading...

Firmware LED Status Introduction

  • No filament: Red flashing
  • Filament loading: Blue flashing (the faster the loading speed, the higher the flashing frequency)
  • Filament unloading: Green flashing (same as above)
  • Filament present but no loading/unloading: Orange breathing light

Klipper, Filament Runout and Jam Reference Configuration

Caution

In the jam detection configuration, detection_length: 2.0

2.0mm is the minimum detection length required for the smart filament detection module to function properly. If you encounter false triggers, try increasing the detection length by 1 mm until the issue is resolved.

[respond]
default_type: echo

[force_move]
enable_force_move: True

[filament_switch_sensor filament_runout_detection]
pause_on_runout: False
switch_pin: ^!PG12
runout_gcode:
M118 No filament
# filament_unload
insert_gcode:
M118 Filament loaded
FORCE_MOVE STEPPER=extruder DISTANCE=8 VELOCITY=5 ACCEL=60
{% if (printer.extruder.can_extrude|lower != 'true') or (printer.extruder.target == 0)%}
M118 Waiting for heating!
SET_HEATER_TEMPERATURE HEATER=extruder TARGET=200
TEMPERATURE_WAIT SENSOR=extruder MINIMUM=190
{% endif %}
M83
G92 E0
G0 E50 F500
G0 E10 F200

[filament_motion_sensor filament_jam_detection]
extruder: extruder
detection_length: 2.0
switch_pin: ^!PG10
pause_on_runout: False
runout_gcode:
M118 Filament jam
insert_gcode:
M118 Filament jam cleared
#event_delay:
#pause_delay:

Info

Only one of filament loading or unloading can be used

Klipper Unload Button Reference Configuration

[gcode_button filament_unload]
pin: ^!PG11
release_gcode:
filament_unload
press_gcode:


[gcode_macro filament_unload]
gcode:
{% if (printer.print_stats.state != "printing") %}
M83
G92 E0
{% if (printer.extruder.can_extrude|lower != 'true') or (printer.extruder.target == 0)%}
M118 Waiting for heating!
SET_HEATER_TEMPERATURE HEATER=extruder TARGET=190
TEMPERATURE_WAIT SENSOR=extruder MINIMUM=185
{% endif %}
G0 E10 F300
G0 E-20 F200
G0 E-50 F500
{% else %}
M118 Printing in progress, retraction operation will not be performed!
{% endif %}

Klipper Load Button Reference Configuration

[gcode_button filament_unload]
pin: ^!PG11
release_gcode:
filament_unload
press_gcode:


[gcode_macro filament_unload]
gcode:
{% if (printer.print_stats.state != "printing") %}
M83
G92 E0
{% if (printer.extruder.can_extrude|lower != 'true') or (printer.extruder.target == 0)%}
M118 Waiting for heating!
SET_HEATER_TEMPERATURE HEATER=extruder TARGET=190
TEMPERATURE_WAIT SENSOR=extruder MINIMUM=185
{% endif %}
G0 E20 F300
{% else %}
M118 Printing in progress, retraction operation will not be performed!
{% endif %}

3D Models

  • Click the online drive link below
  • Loading...
Loading...