Basic Information:
Printer Model: Ender 3 v3 SE
Describe your issue:
I have tis filamnent sensor configured to my klipper macro for a ender 3 v 3 se and its works, so theres is a problem, every time start print do an PAUSE mensage that filament runout, can somebody helpme?
macro.cfg (14.8 KB)
printer.cfg (6.2 KB)
…
[filament_switch_sensor FilamentSensor]
switch_pin: ^PC15
# PA15 is the z-limit switch, which is unused
pause_on_runout: True
runout_gcode:PAUSE
[filament_motion_sensor encoder_sensor]
switch_pin: ^PA15
detection_length: 2.88
extruder: extruder
pause_on_runout: True
runout_gcode:
M117 Filament encoder runout
BEEP
insert_gcode:
M117 Filament encoder inserted
[gcode_macro SFS_ENABLE] ; Add this to PRINT_START to start the sensor right away
description: Enable smart filament sensor
gcode:
M117 ENABLING the Smart Filament Sensor
G92 E0
G92 E0
SET_FILAMENT_SENSOR SENSOR=FilamentSensor ENABLE=1
SET_FILAMENT_SENSOR SENSOR=encoder_sensor ENABLE=1
[gcode_macro SFS_DISABLE] ; Add this to PRINT_END and PRINT_CANCEL to disable the sensor right away
description: Disable smart filament sensor
gcode:
G92 E0
SET_FILAMENT_SENSOR SENSOR=FilamentSensor ENABLE=0 ; Put your filament sensor's name after SENSOR=
SET_FILAMENT_SENSOR SENSOR=encoder_sensor ENABLE=0 ; Put your filament encoder's name after SENSOR=