Creality Ender3V2 with Bl Touch

Basic Information:

Printer Model: Creality Ender 3 V2 BL Touch
MCU / Printerboard: 4.2.2
klippy.log

I am new at this klipper world, I got 11 3D printers from Anet - Mingda.
4 days ago I started to install my raspberry Pi 3B+ by raspberry imager for getting mainsail and klipper to my printer instaed of Marlin.
I started with my ender 3 v2 neo and everything was fine, then I went future to my (I bought used with klipper installed) ender 3 v2, the earlier owner had set it op with klipper and he had upgraded the printer by direct drive and BL Touch. I did not know about this klipper, so I was thinking that I had to reinstall klipper at the pi and the printer. As thought then done.
Now I onle have problems - if I reinstall klipper, then the printer act like I tell it, but when I am printing the nozzle goes over the bed for about 0,5 - 1,0 cm. If I make the “papertest” I can calibrate the printer, but still when printing it goes up to old place. If I change the Z offeset at my printer.cfg the printer goes to the start, but then stop and come with the error “No trigger after full movement” - now I have set the config file back, but now I will no go to home all - I hear the stepper motor start and then stop, if I change anything the error say “No trigger x after full movement” but the printer do not move or anything.
I think I once more have to start all over, but then stille I can not print at the bed, only over the bed in air???https://cloud.onlime.dk/s/311a3c4355e65f642abbaddcfdd6abeb621
https://cloud.onlime.dk/s/3119c1df2f923f54b4e85ba895a98340fcc

What about following the directions given and upload a log?

“No trigger after full movement” typically occurs when either:

  • Moving away from the endstop switch instead towards it
  • Having a defect or wrongly wired endstop

Sorry Sir.

But I have tried to link my printer.cfg file but it doesn’t work - how do I get linked - please tell me and I will do what you want.
Sorry to be new user.

Untitled
You got to read a lot :wink: Overview - Klipper documentation

Good luck, hcet14

2 Likes

Just drag and drop your files into your new posts here.
If a log is too big just zip it and upload the zip file.
It is really easy!

Thank you Brian, that icon I sorry I did not see at the first time, my fault.
I am only allowed to upload my printer.cfg file, maybe I can make my video files okay for uploading.
My winzip are expired and I don’t use it often enough to want to pay for it.
printer.cfg (2.1 KB)

Here is my klippy.log

Starting Klippy…
Args: [‘/home/pi/klipper/klippy/klippy.py’, ‘/home/pi/printer_data/config/printer.cfg’, ‘-l’, ‘/home/pi/printer_data/logs/klippy.log’, ‘-I’, ‘/home/pi/printer_data/comms/klippy.serial’, ‘-a’, ‘/home/pi/printer_data/comms/klippy.sock’]
Git version: ‘v0.11.0-271-g5f990f93’
Branch: master
Remote: origin
Tracked URL: GitHub - Klipper3d/klipper: Klipper is a 3d-printer firmware
CPU: 4 core ARMv7 Processor rev 4 (v7l)
Python: ‘3.9.2 (default, Mar 12 2021, 04:06:34) \n[GCC 10.2.1 20210110]’
Start printer at Sun Sep 3 12:18:50 2023 (1693736330.6 23.4)
===== Config file =====
[virtual_sdcard]
path = ~/printer_data/gcodes
on_error_gcode = CANCEL_PRINT

[pause_resume]

[display_status]

[respond]

[gcode_macro CANCEL_PRINT]
description = Cancel the actual running print
rename_existing = CANCEL_PRINT_BASE
gcode =

{% set client = printer['gcode_macro _CLIENT_VARIABLE']|default({}) %}
{% set allow_park = client.park_at_cancel|default(false)|lower == 'true' %}
{% set retract = client.cancel_retract|default(5.0)|abs %}

{% set park_x = "" if (client.park_at_cancel_x|default(none) is none)
else "X=" ~ client.park_at_cancel_x %}
{% set park_y = "" if (client.park_at_cancel_y|default(none) is none)
else "Y=" ~ client.park_at_cancel_y %}
{% set custom_park = park_x|length > 0 or park_y|length > 0 %}


{% if printer['gcode_macro PAUSE'].restore_idle_timeout > 0 %}
SET_IDLE_TIMEOUT TIMEOUT={printer['gcode_macro PAUSE'].restore_idle_timeout}
{% endif %}
{% if (custom_park or not printer.pause_resume.is_paused) and allow_park %} _TOOLHEAD_PARK_PAUSE_CANCEL {park_x} {park_y} {% endif %}
_CLIENT_RETRACT LENGTH={retract}
TURN_OFF_HEATERS
M106 S0

SET_PAUSE_NEXT_LAYER ENABLE=0
SET_PAUSE_AT_LAYER ENABLE=0 LAYER=0
CANCEL_PRINT_BASE

[gcode_macro PAUSE]
description = Pause the actual running print
rename_existing = PAUSE_BASE
variable_restore_idle_timeout = 0
gcode =

{% set client = printer['gcode_macro _CLIENT_VARIABLE']|default({}) %}
{% set idle_timeout = client.idle_timeout|default(0) %}
{% set temp = printer[printer.toolhead.extruder].target if printer.toolhead.extruder != '' else 0%}
{% set restore = False if printer.toolhead.extruder == ''
else True  if params.RESTORE|default(1)|int == 1 else False %}

SET_GCODE_VARIABLE MACRO=RESUME VARIABLE=last_extruder_temp VALUE="{{'restore': restore, 'temp': temp}}"

{% if idle_timeout > 0 %}
SET_GCODE_VARIABLE MACRO=PAUSE VARIABLE=restore_idle_timeout VALUE={printer.configfile.settings.idle_timeout.timeout}
SET_IDLE_TIMEOUT TIMEOUT={idle_timeout}
{% endif %}
PAUSE_BASE
_TOOLHEAD_PARK_PAUSE_CANCEL {rawparams}

[gcode_macro RESUME]
description = Resume the actual running print
rename_existing = RESUME_BASE
variable_last_extruder_temp = {‘restore’: False, ‘temp’: 0}
gcode =

{% set client = printer['gcode_macro _CLIENT_VARIABLE']|default({}) %}
{% set velocity = printer.configfile.settings.pause_resume.recover_velocity %}
{% set sp_move = client.speed_move|default(velocity) %}


{% if printer['gcode_macro PAUSE'].restore_idle_timeout > 0 %}
SET_IDLE_TIMEOUT TIMEOUT={printer['gcode_macro PAUSE'].restore_idle_timeout}
{% endif %}
{% if printer.idle_timeout.state|upper == "IDLE" %}
{% if last_extruder_temp.restore %} M109 S{last_extruder_temp.temp} {% endif %}
{% endif %}
_CLIENT_EXTRUDE
RESUME_BASE VELOCITY={params.VELOCITY|default(sp_move)}

[gcode_macro SET_PAUSE_NEXT_LAYER]
description = Enable a pause if the next layer is reached
gcode =
{% set pause_next_layer = printer[‘gcode_macro SET_PRINT_STATS_INFO’].pause_next_layer %}
{% set ENABLE = params.ENABLE|default(1)|int != 0 %}
{% set MACRO = params.MACRO|default(pause_next_layer.call, True) %}
SET_GCODE_VARIABLE MACRO=SET_PRINT_STATS_INFO VARIABLE=pause_next_layer VALUE=“{{ ‘enable’: ENABLE, ‘call’: MACRO }}”

[gcode_macro SET_PAUSE_AT_LAYER]
description = Enable/disable a pause if a given layer number is reached
gcode =
{% set pause_at_layer = printer[‘gcode_macro SET_PRINT_STATS_INFO’].pause_at_layer %}
{% set ENABLE = params.ENABLE|int != 0 if params.ENABLE is defined
else params.LAYER is defined %}
{% set LAYER = params.LAYER|default(pause_at_layer.layer)|int %}
{% set MACRO = params.MACRO|default(pause_at_layer.call, True) %}
SET_GCODE_VARIABLE MACRO=SET_PRINT_STATS_INFO VARIABLE=pause_at_layer VALUE=“{{ ‘enable’: ENABLE, ‘layer’: LAYER, ‘call’: MACRO }}”

[gcode_macro SET_PRINT_STATS_INFO]
rename_existing = SET_PRINT_STATS_INFO_BASE
description = Overwrite, to get pause_next_layer and pause_at_layer feature
variable_pause_next_layer = { ‘enable’: False, ‘call’: “PAUSE” }
variable_pause_at_layer = { ‘enable’: False, ‘layer’: 0, ‘call’: “PAUSE” }
gcode =
{% if pause_next_layer.enable %}
RESPOND TYPE=echo MSG=‘{“%s, forced by pause_next_layer” % pause_next_layer.call}’
{pause_next_layer.call}
SET_PAUSE_NEXT_LAYER ENABLE=0
{% elif pause_at_layer.enable and params.CURRENT_LAYER is defined and params.CURRENT_LAYER|int == pause_at_layer.layer %}
RESPOND TYPE=echo MSG=‘{“%s, forced by pause_at_layer [%d]” % (pause_at_layer.call, pause_at_layer.layer)}’
{pause_at_layer.call}
SET_PAUSE_AT_LAYER ENABLE=0
{% endif %}
SET_PRINT_STATS_INFO_BASE {rawparams}

[gcode_macro _TOOLHEAD_PARK_PAUSE_CANCEL]
description = Helper: park toolhead used in PAUSE and CANCEL_PRINT
gcode =

{% set client = printer['gcode_macro _CLIENT_VARIABLE']|default({}) %}
{% set velocity = printer.configfile.settings.pause_resume.recover_velocity %}
{% set use_custom     = client.use_custom_pos|default(false)|lower == 'true' %}
{% set custom_park_x  = client.custom_park_x|default(0.0) %}
{% set custom_park_y  = client.custom_park_y|default(0.0) %}
{% set park_dz        = client.custom_park_dz|default(2.0)|abs %}
{% set sp_hop         = client.speed_hop|default(15) * 60 %}
{% set sp_move        = client.speed_move|default(velocity) * 60 %}

{% set origin    = printer.gcode_move.homing_origin %}
{% set act       = printer.gcode_move.gcode_position %}
{% set max       = printer.toolhead.axis_maximum %}
{% set cone      = printer.toolhead.cone_start_z|default(max.z) %}
{% set round_bed = True if printer.configfile.settings.printer.kinematics is in ['delta','polar','rotary_delta','winch']
else False %}

{% set z_min = params.Z_MIN|default(0)|float %}
{% set z_park = [[(act.z + park_dz), z_min]|max, (max.z - origin.z)]|min %}
{% set x_park = params.X       if params.X is defined
else custom_park_x  if use_custom
else 0.0            if round_bed
else (max.x - 5.0) %}
{% set y_park = params.Y       if params.Y is defined
else custom_park_y  if use_custom
else (max.y - 5.0)  if round_bed and z_park < cone
else 0.0            if round_bed
else (max.y - 5.0) %}

_CLIENT_RETRACT
{% if "xyz" in printer.toolhead.homed_axes %}
G90
G1 Z{z_park} F{sp_hop}
G1 X{x_park} Y{y_park} F{sp_move}
{% if not printer.gcode_move.absolute_coordinates %} G91 {% endif %}
{% else %}
RESPOND TYPE=echo MSG='Printer not homed'
{% endif %}

[gcode_macro _CLIENT_EXTRUDE]
description = Extrudes, if the extruder is hot enough
gcode =

{% set client = printer['gcode_macro _CLIENT_VARIABLE']|default({}) %}
{% set use_fw_retract = (client.use_fw_retract|default(false)|lower == 'true') and (printer.firmware_retraction is defined) %}
{% set length = params.LENGTH|default(client.unretract)|default(1.0)|float %}
{% set speed = params.SPEED|default(client.speed_unretract)|default(35) %}
{% set absolute_extrude = printer.gcode_move.absolute_extrude %}

{% if printer.toolhead.extruder != '' %}
{% if printer[printer.toolhead.extruder].can_extrude %}
{% if use_fw_retract %}
{% if length < 0 %}
G10
{% else %}
G11
{% endif %}
{% else %}
M83
G1 E{length} F{(speed|float|abs) * 60}
{% if absolute_extrude %}
M82
{% endif %}
{% endif %}
{% else %}
RESPOND TYPE=echo MSG='Extruder not hot enough'
{% endif %}
{% endif %}

[gcode_macro _CLIENT_RETRACT]
description = Retracts, if the extruder is hot enough
gcode =
{% set client = printer[‘gcode_macro _CLIENT_VARIABLE’]|default({}) %}
{% set length = params.LENGTH|default(client.retract)|default(1.0)|float %}
{% set speed = params.SPEED|default(client.speed_retract)|default(35) %}

_CLIENT_EXTRUDE LENGTH=-{length|float|abs} SPEED={speed|float|abs}

[stepper_x]
step_pin = PC2
dir_pin = PB9
enable_pin = !PC3
microsteps = 16
rotation_distance = 40
endstop_pin = ^PA5
position_endstop = 0
position_max = 235
homing_speed = 80

[stepper_y]
step_pin = PB8
dir_pin = PB7
enable_pin = !PC3
microsteps = 16
rotation_distance = 40
endstop_pin = ^PA6
position_endstop = 0
position_max = 235
homing_speed = 80

[stepper_z]
step_pin = PB6
dir_pin = !PB5
enable_pin = !PC3
microsteps = 16
rotation_distance = 8
endstop_pin = probe:z_virtual_endstop
position_max = 250
homing_speed = 4
second_homing_speed = 1
homing_retract_dist = 2.0

[extruder]
max_extrude_only_distance = 100.0
step_pin = PB4
dir_pin = PB3
enable_pin = !PC3
microsteps = 16
rotation_distance = 34.406
nozzle_diameter = 0.400
filament_diameter = 1.750
heater_pin = PA1
sensor_type = EPCOS 100K B57560G104F
sensor_pin = PC5
control = pid
pid_kp = 21.527
pid_ki = 1.063
pid_kd = 108.982
min_temp = 0
max_temp = 250

[heater_bed]
heater_pin = PA2
sensor_type = EPCOS 100K B57560G104F
sensor_pin = PC4
control = pid
pid_kp = 70.405
pid_ki = 1.229
pid_kd = 1008.553
min_temp = 0
max_temp = 130

[fan]
pin = PA0

[mcu]
serial = /dev/serial/by-id/usb-1a86_USB_Serial-if00-port0
restart_method = command

[printer]
kinematics = cartesian
max_velocity = 300
max_accel = 5000
max_z_velocity = 5
square_corner_velocity = 5.0
max_z_accel = 100

[bltouch]
sensor_pin = ^PB1
control_pin = PB0
x_offset = -45.0
y_offset = -10.0
z_offset = 0
speed = 20
samples = 1
sample_retract_dist = 8.0

[safe_z_home]
home_xy_position = 160,120
speed = 150
z_hop = 10
z_hop_speed = 10

[bed_mesh]
speed = 120
mesh_min = 30,30
mesh_max = 189,189
probe_count = 5,5
fade_start = 1
fade_end = 10
fade_target = 0
algorithm = bicubic

[bed_screws]
screw1 = 30,25
screw1_name = 1
screw2 = 200,25
screw2_name = 2
screw3 = 200,195
screw3_name = 3
screw4 = 30,195
screw4_name = 4

[screws_tilt_adjust]
screw1 = 67, 42
screw1_name = front left screw
screw2 = 237.60, 42
screw2_name = front right screw
screw3 = 237.60, 212
screw3_name = rear right screw
screw4 = 67.60, 212
screw4_name = rear left screw
horizontal_move_z = 10
speed = 200
screw_thread = CW-M4

[output_pin beeper]
pin = PB13

Extruder max_extrude_ratio=0.266081
mcu ‘mcu’: Starting serial connect
Loaded MCU ‘mcu’ 112 commands (v0.11.0-271-g5f990f93 / gcc: (15:8-2019-q3-1+b1) 8.3.1 20190703 (release) [gcc-8-branch revision 273027] binutils: (2.34-4+rpi1+14) 2.34)
MCU ‘mcu’ config: ADC_MAX=4095 BUS_PINS_i2c1=PB6,PB7 BUS_PINS_i2c1a=PB8,PB9 BUS_PINS_i2c2=PB10,PB11 BUS_PINS_spi1=PA6,PA7,PA5 BUS_PINS_spi1a=PB4,PB5,PB3 BUS_PINS_spi2=PB14,PB15,PB13 BUS_PINS_spi3=PB4,PB5,PB3 CLOCK_FREQ=72000000 MCU=stm32f103xe PWM_MAX=255 RECEIVE_WINDOW=192 RESERVE_PINS_serial=PA10,PA9 SERIAL_BAUD=250000 STATS_SUMSQ_BASE=256 STEPPER_BOTH_EDGE=1
Sending MCU ‘mcu’ printer configuration…
Configured MCU ‘mcu’ (1024 moves)
Starting heater checks for heater_bed
bed_mesh: generated points
Index | Tool Adjusted | Probe
0 | (75.0, 40.0) | (30.0, 30.0)
1 | (114.8, 40.0) | (69.8, 30.0)
2 | (154.5, 40.0) | (109.5, 30.0)
3 | (194.2, 40.0) | (149.2, 30.0)
4 | (234.0, 40.0) | (189.0, 30.0)
5 | (234.0, 79.8) | (189.0, 69.8)
6 | (194.2, 79.8) | (149.2, 69.8)
7 | (154.5, 79.8) | (109.5, 69.8)
8 | (114.8, 79.8) | (69.8, 69.8)
9 | (75.0, 79.8) | (30.0, 69.8)
10 | (75.0, 119.5) | (30.0, 109.5)
11 | (114.8, 119.5) | (69.8, 109.5)
12 | (154.5, 119.5) | (109.5, 109.5)
13 | (194.2, 119.5) | (149.2, 109.5)
14 | (234.0, 119.5) | (189.0, 109.5)
15 | (234.0, 159.2) | (189.0, 149.2)
16 | (194.2, 159.2) | (149.2, 149.2)
17 | (154.5, 159.2) | (109.5, 149.2)
18 | (114.8, 159.2) | (69.8, 149.2)
19 | (75.0, 159.2) | (30.0, 149.2)
20 | (75.0, 199.0) | (30.0, 189.0)
21 | (114.8, 199.0) | (69.8, 189.0)
22 | (154.5, 199.0) | (109.5, 189.0)
23 | (194.2, 199.0) | (149.2, 189.0)
24 | (234.0, 199.0) | (189.0, 189.0)
Starting heater checks for extruder
Stats 26.7: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=1147 bytes_read=4297 bytes_retransmit=9 bytes_invalid=0 send_seq=127 receive_seq=126 retransmit_seq=2 srtt=0.005 rttvar=0.002 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999133 heater_bed: target=0 temp=0.0 pwm=0.000 sysload=1.50 cputime=2.109 memavail=753516 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=0.0 pwm=0.000
webhooks client 1971141936: New connection
webhooks client 1971141936: Client info {‘program’: ‘Moonraker’, ‘version’: ‘v0.8.0-138-gfe12095’}
Stats 27.7: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=1153 bytes_read=4408 bytes_retransmit=9 bytes_invalid=0 send_seq=128 receive_seq=128 retransmit_seq=2 srtt=0.005 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999255 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.50 cputime=2.123 memavail=753744 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
webhooks: registering remote method ‘shutdown_machine’ for connection id: 1971141936
webhooks: registering remote method ‘reboot_machine’ for connection id: 1971141936
webhooks: registering remote method ‘pause_job_queue’ for connection id: 1971141936
webhooks: registering remote method ‘start_job_queue’ for connection id: 1971141936
Stats 28.7: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=1159 bytes_read=4529 bytes_retransmit=9 bytes_invalid=0 send_seq=129 receive_seq=129 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999498 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.50 cputime=2.146 memavail=753408 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 29.7: gcodein=0 mcu: mcu_awake=0.000 mcu_task_avg=0.000000 mcu_task_stddev=0.000000 bytes_write=1165 bytes_read=4650 bytes_retransmit=9 bytes_invalid=0 send_seq=130 receive_seq=130 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999660 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.50 cputime=2.156 memavail=753012 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 30.7: gcodein=0 mcu: mcu_awake=0.003 mcu_task_avg=0.000020 mcu_task_stddev=0.000034 bytes_write=1171 bytes_read=4771 bytes_retransmit=9 bytes_invalid=0 send_seq=131 receive_seq=131 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999458 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.54 cputime=2.165 memavail=760932 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 31.7: gcodein=0 mcu: mcu_awake=0.003 mcu_task_avg=0.000020 mcu_task_stddev=0.000034 bytes_write=1177 bytes_read=4892 bytes_retransmit=9 bytes_invalid=0 send_seq=132 receive_seq=132 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999417 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.54 cputime=2.175 memavail=760688 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 32.7: gcodein=0 mcu: mcu_awake=0.003 mcu_task_avg=0.000020 mcu_task_stddev=0.000034 bytes_write=1183 bytes_read=5013 bytes_retransmit=9 bytes_invalid=0 send_seq=133 receive_seq=133 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999391 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.54 cputime=2.185 memavail=756404 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 33.7: gcodein=0 mcu: mcu_awake=0.003 mcu_task_avg=0.000020 mcu_task_stddev=0.000034 bytes_write=1189 bytes_read=5119 bytes_retransmit=9 bytes_invalid=0 send_seq=134 receive_seq=134 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999330 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.54 cputime=2.192 memavail=756840 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 34.7: gcodein=0 mcu: mcu_awake=0.003 mcu_task_avg=0.000020 mcu_task_stddev=0.000034 bytes_write=1195 bytes_read=5240 bytes_retransmit=9 bytes_invalid=0 send_seq=135 receive_seq=135 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999360 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.54 cputime=2.201 memavail=756840 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 35.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1201 bytes_read=5374 bytes_retransmit=9 bytes_invalid=0 send_seq=136 receive_seq=136 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999340 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.42 cputime=2.213 memavail=756840 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 36.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1207 bytes_read=5480 bytes_retransmit=9 bytes_invalid=0 send_seq=137 receive_seq=137 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999336 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.42 cputime=2.223 memavail=755860 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 37.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1213 bytes_read=5601 bytes_retransmit=9 bytes_invalid=0 send_seq=138 receive_seq=138 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999331 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.42 cputime=2.233 memavail=755872 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 38.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1219 bytes_read=5722 bytes_retransmit=9 bytes_invalid=0 send_seq=139 receive_seq=139 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999333 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.42 cputime=2.244 memavail=755872 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 39.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1225 bytes_read=5828 bytes_retransmit=9 bytes_invalid=0 send_seq=140 receive_seq=140 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999352 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.42 cputime=2.255 memavail=755424 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 40.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1231 bytes_read=5962 bytes_retransmit=9 bytes_invalid=0 send_seq=141 receive_seq=141 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999353 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.39 cputime=2.266 memavail=755424 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 41.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1237 bytes_read=6083 bytes_retransmit=9 bytes_invalid=0 send_seq=142 receive_seq=142 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999380 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.39 cputime=2.277 memavail=755424 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 42.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1243 bytes_read=6189 bytes_retransmit=9 bytes_invalid=0 send_seq=143 receive_seq=143 retransmit_seq=2 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999387 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.39 cputime=2.287 memavail=755424 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 43.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1249 bytes_read=6310 bytes_retransmit=9 bytes_invalid=0 send_seq=144 receive_seq=144 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999413 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.39 cputime=2.297 memavail=755424 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 44.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1255 bytes_read=6431 bytes_retransmit=9 bytes_invalid=0 send_seq=145 receive_seq=145 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999402 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.39 cputime=2.307 memavail=755424 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 45.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1261 bytes_read=6550 bytes_retransmit=9 bytes_invalid=0 send_seq=146 receive_seq=146 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999410 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.28 cputime=2.318 memavail=755440 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 46.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1267 bytes_read=6686 bytes_retransmit=9 bytes_invalid=0 send_seq=147 receive_seq=147 retransmit_seq=2 srtt=0.004 rttvar=0.001 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999410 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.28 cputime=2.329 memavail=755188 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 47.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1273 bytes_read=6792 bytes_retransmit=9 bytes_invalid=0 send_seq=148 receive_seq=148 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999420 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.28 cputime=2.339 memavail=755192 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 48.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1279 bytes_read=6898 bytes_retransmit=9 bytes_invalid=0 send_seq=149 receive_seq=149 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999412 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.28 cputime=2.349 memavail=755192 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 49.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1285 bytes_read=7034 bytes_retransmit=9 bytes_invalid=0 send_seq=150 receive_seq=150 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999415 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.28 cputime=2.359 memavail=755192 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 50.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1291 bytes_read=7153 bytes_retransmit=9 bytes_invalid=0 send_seq=151 receive_seq=151 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999414 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.17 cputime=2.369 memavail=755192 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 51.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1297 bytes_read=7259 bytes_retransmit=9 bytes_invalid=0 send_seq=152 receive_seq=152 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999408 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.17 cputime=2.379 memavail=755192 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 52.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1303 bytes_read=7395 bytes_retransmit=9 bytes_invalid=0 send_seq=153 receive_seq=153 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999409 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.17 cputime=2.390 memavail=755192 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 53.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1309 bytes_read=7501 bytes_retransmit=9 bytes_invalid=0 send_seq=154 receive_seq=154 retransmit_seq=2 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999413 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.17 cputime=2.400 memavail=755192 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 54.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1315 bytes_read=7607 bytes_retransmit=9 bytes_invalid=0 send_seq=155 receive_seq=155 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999410 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.17 cputime=2.410 memavail=755192 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 55.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1321 bytes_read=7756 bytes_retransmit=9 bytes_invalid=0 send_seq=156 receive_seq=156 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999440 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.08 cputime=2.421 memavail=755208 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 56.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1327 bytes_read=7862 bytes_retransmit=9 bytes_invalid=0 send_seq=157 receive_seq=157 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999439 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.08 cputime=2.432 memavail=753976 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 57.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1333 bytes_read=7968 bytes_retransmit=9 bytes_invalid=0 send_seq=158 receive_seq=158 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999438 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.08 cputime=2.442 memavail=753980 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 58.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1339 bytes_read=8104 bytes_retransmit=9 bytes_invalid=0 send_seq=159 receive_seq=159 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999431 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=1.08 cputime=2.452 memavail=753980 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 59.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1345 bytes_read=8210 bytes_retransmit=9 bytes_invalid=0 send_seq=160 receive_seq=160 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999429 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=1.08 cputime=2.462 memavail=753980 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 60.7: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1351 bytes_read=8329 bytes_retransmit=9 bytes_invalid=0 send_seq=161 receive_seq=161 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999425 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=0.99 cputime=2.472 memavail=753980 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 61.8: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1357 bytes_read=8465 bytes_retransmit=9 bytes_invalid=0 send_seq=162 receive_seq=162 retransmit_seq=2 srtt=0.004 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999422 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=0.99 cputime=2.483 memavail=753980 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 62.8: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1363 bytes_read=8571 bytes_retransmit=9 bytes_invalid=0 send_seq=163 receive_seq=163 retransmit_seq=2 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999417 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=0.99 cputime=2.492 memavail=753980 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.7 pwm=0.000
Stats 63.8: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1369 bytes_read=8674 bytes_retransmit=9 bytes_invalid=0 send_seq=164 receive_seq=164 retransmit_seq=2 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999412 heater_bed: target=0 temp=23.1 pwm=0.000 sysload=0.99 cputime=2.502 memavail=753980 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000
Stats 64.8: gcodein=0 mcu: mcu_awake=0.001 mcu_task_avg=0.000010 mcu_task_stddev=0.000007 bytes_write=1375 bytes_read=8800 bytes_retransmit=9 bytes_invalid=0 send_seq=165 receive_seq=165 retransmit_seq=2 srtt=0.003 rttvar=0.000 rto=0.025 ready_bytes=0 upcoming_bytes=0 freq=71999421 heater_bed: target=0 temp=23.2 pwm=0.000 sysload=0.99 cputime=2.512 memavail=753980 print_time=0.001 buffer_time=0.000 print_stall=0 extruder: target=0 temp=23.6 pwm=0.000

Rather than post the contents of your klippy.log, please simply drag the file and drop it somewhere in the “Reply” Box or click on the upload icon:

image

It makes it much easier for people to work with.

3 Likes

I was trying that, but the site says that the file is too large, and I can not drag it into the site when the file are too big or not right format.
This site deny my options.

.zip it.

If you go back to the problem entry page, you’ll see that it says:

Yes I have read that, and my file is too big, but still I can not make i as zip file unless I want to pay for winzip. I just drop it and work out some else - thank you.

Ever heard of 7zip?

https://7-zip.org/

1 Like

No but I will see about I can find it - normally not use the comprimisssing programs.

But the Klippy.log are at my onlime account:

https://cloud.onlime.dk/s/3119c1df2f923f54b4e85ba895a98340fcc

klippy (2).zip (1.6 MB)

1 Like

If you had done a simple Google search, you would have discovered that:

  • For Windows, right click on the file and then click on “Send To…” and then “Compressed (Zipped) Folder”
  • For Linux, right click on the file and click then on “Compress”
  • For Mac OS, control-click on the file or, if you’re using a MacBook, do a two finger click and then click on “Compress”

Youngsters; they never look for the obvious way of doing things.

Now, get off my lawn!

1 Like

Thank you, that was what I found out of and then I put the zipped file in here.
Thanks you calling an old man youngster - at my age of 50+ is very nice to hear :slight_smile:

1 Like