Klipper Fehler bei G28 im Programm

Guten Tag ,

 

habe ein Problem beim Homen meines Durckers . Wen ich das druck Programm starte Heizt das Heizbed normal hoch dann machen die Motoren einen ruck und der Drucker geht in einen Fehler zustand . Laut der anzeige immer wen der G28 befehl kommt . Weiß aber nicht wo der Fehler liegen könnte . Als fehler kommt dann Shutdown : Klipper .

So lassen sich die Achsen alle Homen auch heizbed und Heizdüsen Funktionieren soweit wen sie Manuell angesteuert werden.

Verwendeter Slicer : Prusa Slicer

Kurz zu den eck daten ich verwende als Board ein Bigtreetech Octopus Pro 1.0 mit TMC2209 Treibern, als Software habe ich einen Repetierserver mit Klipper verwendet.

 

# This is the default configuration for the printer: 3D-GORILLA

# This option is needed if you want to use the recover feature so that Repetier-Server can manually set the z position in Klipper

[force_move]

enable_force_move: true

 

# This file contains common pin mappings for the BigTreeTech Octopus

# and Octopus Pro boards. To use this config, start by identifying the

# micro-controller on the board - it may be an STM32F446, STM32F429,

# or an STM32H723.  Select the appropriate micro-controller in "make

# menuconfig" and select "Enable low-level configuration options". For

# STM32F446 boards the firmware should be compiled with a "32KiB

# bootloader" and a "12MHz crystal" clock reference. For STM32F429

# boards use a "32KiB bootloader" and an "8MHz crystal". For STM32H723

# boards use a "128KiB bootloader" and a "25Mhz crystal".

 

# See docs/Config_Reference.md for a description of parameters.

 

# Driver0

[stepper_x]

step_pin: PF13

dir_pin: PF12

enable_pin: !PF14

microsteps: 32

full_steps_per_rotation:400

rotation_distance: 40

endstop_pin: PG6

position_endstop: 0

position_max: 400

homing_speed: 50

 

# Driver1

[stepper_y]

step_pin: PG0

dir_pin: PG1

enable_pin: !PF15

microsteps: 32

full_steps_per_rotation:400

rotation_distance: 40

endstop_pin: PG9

position_endstop: 0

position_max: 400

homing_speed: 50

 

# Driver2

[stepper_z]

step_pin: !PF11

dir_pin: !PG3

enable_pin: !PG5

microsteps: 16

rotation_distance: 4

endstop_pin: PG10

position_endstop: 0.5

position_max: 400

 

# Driver3

# The Octopus only has 4 heater outputs which leaves an extra stepper

# This can be used for a second Z stepper, dual_carriage, extruder co-stepper,

# or other accesory such as an MMU

[stepper_z1]

step_pin: !PG4

dir_pin: !PC1

enable_pin: !PA0

microsteps: 16

rotation_distance: 4

endstop_pin: PG11

 

# Driver4

[extruder]

step_pin: PF9

dir_pin: PF10

enable_pin: !PG2

microsteps: 32

rotation_distance: 7.71

gear_ratio: 50:17

full_steps_per_rotation: 200

nozzle_diameter: 0.400

filament_diameter: 1.750

max_power: 1.0

min_extrude_temp: 170

heater_pin: PA2 # HE0

sensor_pin:  PF4 # T0

sensor_type: ATC Semitec 104NT-4-R025H42G

control: pid

pid_Kp: 22.2

pid_Ki: 1.08

pid_Kd: 114

min_temp: 0

max_temp: 300

 

# Script to change back to the main extruder

[gcode_macro T0]

gcode:

    SET_SERVO SERVO=extruder_servo angle=100    # Lift secondary extruder

    SET_GCODE_OFFSET Z=0 MOVE=1                 # Adjust z-height

    SET_GCODE_OFFSET X=0                        # Clear X offset

    ACTIVATE_EXTRUDER EXTRUDER=extruder

 

# Driver5

[extruder1]

step_pin: PC13

dir_pin: PF0

enable_pin: !PF1

microsteps: 32

rotation_distance: 7.71

gear_ratio: 50:17

full_steps_per_rotation: 200

nozzle_diameter: 0.400

filament_diameter: 1.750

max_power: 1.0

min_extrude_temp: 170

heater_pin: PA3 # HE1

sensor_pin: PF5 # T1

sensor_type: ATC Semitec 104NT-4-R025H42G

control: pid

pid_Kp: 22.2

pid_Ki: 1.08

pid_Kd: 114

min_temp: 0

max_temp: 300

 

[filament_switch_sensor material_1]

switch_pin: PG13

 

# Script to activate second extruder

[gcode_macro T1]

gcode:

    SET_GCODE_OFFSET Z=0.0 MOVE=1             # Adjust z-height

    SET_SERVO SERVO=extruder_servo angle=100    # Position second extruder

    SET_GCODE_OFFSET X=20                        # Account for different X offset

    ACTIVATE_EXTRUDER EXTRUDER=extruder1

 

 

[heater_bed]

heater_pin: PA1

sensor_pin: PF3 # TB

sensor_type: NTC 100K beta 3950

control: watermark

min_temp: 0

max_temp: 120

 

[heater_fan extruder fan]

pin: PA8

heater: extruder

 

[heater_fan extruder fan1]

pin: PD13

heater: extruder1

 

[fan]

pin: PE5

 

[fan_generic fan2]

pin: PD12

 

[mcu]

serial: /dev/serial/by-id/usb-Klipper_stm32f446xx_2E000D001750344D30353320-if00

restart_method: command

 

# CAN bus is also available on this board

   

[printer]

kinematics: corexy

max_velocity: 300

max_accel: 3000

max_z_velocity: 25

max_z_accel: 30

square_corner_velocity: 5.0

 

########################################

# TMC2209 configuration

########################################

 

[tmc2209 stepper_x]

uart_pin: PC4

interpolate: false

run_current: 0.8

sense_resistor: 0.110

stealthchop_threshold: 0

 

[tmc2209 stepper_y]

uart_pin: PD11

interpolate: false

run_current: 0.8

sense_resistor: 0.110

stealthchop_threshold: 0

 

[tmc2209 stepper_z]

uart_pin: PC6

interpolate: false

run_current: 0.650

stealthchop_threshold: 0

 

[tmc2209 stepper_z1]

uart_pin: PC7

interpolate: false

run_current: 0.650

stealthchop_threshold: 0

 

[tmc2209 extruder]

uart_pin: PF2

interpolate: false

run_current: 0.500

sense_resistor: 0.110

stealthchop_threshold: 0

 

 

[tmc2209 extruder1]

uart_pin: PE4

interpolate: false

run_current: 0.650

sense_resistor: 0.110

stealthchop_threshold: 0

 

Vielen Dank schonmal im vorraus .

Comments

  • Bitte logging aktivieren und sehen was klipper da kurz vorher sendet. Wenn Klipper shutdown verlangt sagt er vorher eigentlich auch warum. Ggf. auch im Klipper Log nachsehen (vom klipper tab aus erreichbar).
  • edited October 2023
    Anbei die daten aber ganz deuten kann ich es nicht . Hätte jetzt gesagt er versteht es nicht ganz mit den zwei extrudern .
    Bin mir jetzt nicht sicher ob die Logs mitgeschickt wurden .

    anbei mal ein auszug von der Connected datei , sieht aus als ob er von den Temeperaturen keine korrekte rückmeldung bekommt.

    Mesg:19:47:10.305: Dtr: false Rts: false
    Mesg:19:47:10.305: Connection started
    Mesg:19:47:10.305: Printer reset requested - emergency:false
    Mesg:19:47:10.305: Dtr: false Rts: false
    Recv:19:47:10.552: Response while unconnected:// Printer is not ready
    Recv:19:47:10.552: // Printer is not ready
    Recv:19:47:10.552: Response while unconnected:// The klippy host software is attempting to connect.  Please
    Recv:19:47:10.552: // The klippy host software is attempting to connect.  Please
    Recv:19:47:10.552: Response while unconnected:// retry in a few moments.
    Recv:19:47:10.552: // retry in a few moments.
    Recv:19:47:10.552: Connection verified by:!! Printer is not ready
    Recv:19:47:10.552: !! Printer is not ready
    Mesg:19:47:10.553: Received extra ok - ignored
    Recv:19:47:10.553: ok
    Send:19:47:10.553: N1 M105
    Recv:19:47:10.564: // Printer is not ready
    Recv:19:47:10.564: // The klippy host software is attempting to connect.  Please
    Recv:19:47:10.564: // retry in a few moments.
    Recv:19:47:10.564: !! Printer is not ready
    Recv:19:47:10.564: ok
    Recv:19:47:10.564: // Printer is not ready
    Recv:19:47:10.564: // The klippy host software is attempting to connect.  Please
    Recv:19:47:10.564: // retry in a few moments.
    Recv:19:47:10.565: !! Printer is not ready
    Mesg:19:47:10.565: Received extra ok - ignored
    Recv:19:47:10.565: ok
    Mesg:19:47:10.565: Received extra ok - ignored
    Recv:19:47:10.565: ok T:0
    Send:19:47:10.565: N2 M115
    Recv:19:47:10.566: ok FIRMWARE_VERSION:v0.11.0-274-g2acfa282 FIRMWARE_NAME:Klipper
    Send:19:47:10.566: N3 M220 S100
    Recv:19:47:10.567: // Printer is not ready
    Recv:19:47:10.567: // The klippy host software is attempting to connect.  Please
    Recv:19:47:10.567: // retry in a few moments.
    Recv:19:47:10.567: !! Printer is not ready
    Recv:19:47:10.567: ok
    Send:19:47:10.567: N4 M221 S100
    Recv:19:47:10.569: // Printer is not ready
    Recv:19:47:10.569: // The klippy host software is attempting to connect.  Please
    Recv:19:47:10.569: // retry in a few moments.
    Recv:19:47:10.569: !! Printer is not ready
    Recv:19:47:10.569: ok
    Send:19:47:10.569: N5 G92 E0
    Recv:19:47:10.570: // Printer is not ready
    Recv:19:47:10.570: // The klippy host software is attempting to connect.  Please
    Recv:19:47:10.570: // retry in a few moments.
    Recv:19:47:10.570: !! Printer is not ready
    Recv:19:47:10.570: ok
    Send:19:47:10.570: N6 G90
    Recv:19:47:10.572: // Printer is not ready
    Recv:19:47:10.572: // The klippy host software is attempting to connect.  Please
    Recv:19:47:10.572: // retry in a few moments.
    Recv:19:47:10.572: !! Printer is not ready
    Recv:19:47:10.572: ok
    Send:19:47:10.572: N7 M82
    Recv:19:47:10.573: // Printer is not ready
    Recv:19:47:10.573: // The klippy host software is attempting to connect.  Please
    Recv:19:47:10.573: // retry in a few moments.
    Recv:19:47:10.573: !! Printer is not ready
    Recv:19:47:10.573: ok
    Send:19:47:10.573: N8 T0
    Recv:19:47:10.574: // Printer is not ready
    Recv:19:47:10.574: // The klippy host software is attempting to connect.  Please
    Recv:19:47:10.574: // retry in a few moments.
    Recv:19:47:10.574: !! Printer is not ready
    Recv:19:47:10.575: ok
    Send:19:47:10.575: N9 M114
    Exec:19:47:10.575: @startCodeProcessed
    Recv:19:47:10.575: X:0.000 Y:0.000 Z:0.000 E:0.000
    Recv:19:47:10.575: ok
    Recv:19:47:11.607: // Klipper state: Ready
    Send:19:47:11.608: N10 M105
    Recv:19:47:11.609: ok B:0.0 /0.0 T0:0.0 /0.0 T1:0.0 /0.0
    Send:19:47:11.609: N11 M105
    Recv:19:47:11.610: ok B:0.0 /0.0 T0:0.0 /0.0 T1:0.0 /0.0
    Send:19:47:11.610: N12 M115
    Recv:19:47:11.610: ok FIRMWARE_VERSION:v0.11.0-274-g2acfa282 FIRMWARE_NAME:Klipper
    Send:19:47:11.610: N13 M220 S100
    Recv:19:47:11.611: ok
    Send:19:47:11.611: N14 M221 S100
    Recv:19:47:11.611: ok
    Send:19:47:11.611: N15 G92 E0
    Recv:19:47:11.611: ok
    Send:19:47:11.611: N16 G90
    Recv:19:47:11.611: ok
    Send:19:47:11.611: N17 M82
    Recv:19:47:11.611: ok
    Send:19:47:11.612: N18 T0
    Recv:19:47:11.612: // Unknown command:"SET_SERVO"
    Recv:19:47:11.613: // Extruder extruder already active
    Recv:19:47:11.613: ok
    Send:19:47:11.613: N19 M114
    Exec:19:47:11.613: @startCodeProcessed
    Recv:19:47:11.614: X:0.000 Y:0.000 Z:0.000 E:0.000
    Recv:19:47:11.614: ok
    Send:19:47:12.611: N20 M105
    Recv:19:47:12.612: ok B:52.9 /0.0 T0:19.7 /0.0 T1:21.3 /0.0
    Send:19:47:13.621: N21 M105
    Recv:19:47:13.622: ok B:52.9 /0.0 T0:19.7 /0.0 T1:21.3 /0.0
    Send:19:47:14.630: N22 M105
    Recv:19:47:14.631: ok B:52.8 /0.0 T0:19.7 /0.0 T1:21.3 /0.0
    Send:19:47:15.635: N23 M105
    Recv:19:47:15.636: ok B:52.8 /0.0 T0:19.7 /0.0 T1:21.3 /0.0
    Send:19:47:16.643: N24 M105
    Recv:19:47:16.644: ok B:52.7 /0.0 T0:19.7 /0.0 T1:21.3 /0.0
    Send:19:47:17.653: N25 M105
    Recv:19:47:17.654: ok B:52.7 /0.0 T0:19.7 /0.0 T1:21.3 /0.0
    Send:19:47:18.658: N26 M105
    Recv:19:47:18.658: ok B:52.6 /0.0 T0:19.8 /0.0 T1:21.3 /0.0
    Send:19:47:19.661: N27 M105
    Recv:19:47:19.661: ok B:52.6 /0.0 T0:19.8 /0.0 T1:21.3 /0.0
    Send:19:47:20.664: N28 M105
    Recv:19:47:20.665: ok B:52.6 /0.0 T0:19.7 /0.0 T1:21.3 /0.0
    Send:19:47:21.672: N29 M105
    Recv:19:47:21.673: ok B:52.5 /0.0 T0:19.7 /0.0 T1:21.3 /0.0
    Send:19:47:22.679: N30 M105
    Recv:19:47:22.679: ok B:52.5 /0.0 T0:19.8 /0.0 T1:21.3 /0.0
    Send:19:47:23.681: N31 M105
    Recv:19:47:23.682: ok B:52.4 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:24.685: N32 M105
    Recv:19:47:24.686: ok B:52.4 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Exec:19:47:25.311: @getip
    Send:19:47:25.313: N33 M117 192.168.2.119:3344
    Recv:19:47:25.314: // Unknown command:"M117 192.168.2.119 3344"
    Recv:19:47:25.314: ok
    Send:19:47:25.689: N34 M105
    Recv:19:47:25.689: ok B:52.3 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:26.689: N35 M105
    Recv:19:47:26.690: ok B:52.3 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:27.691: N36 M105
    Recv:19:47:27.691: ok B:52.3 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:28.692: N37 M105
    Recv:19:47:28.692: ok B:52.2 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:29.694: N38 M105
    Recv:19:47:29.695: ok B:52.2 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:30.698: N39 M105
    Recv:19:47:30.699: ok B:52.1 /0.0 T0:19.8 /0.0 T1:21.3 /0.0
    Send:19:47:31.708: N40 M105
    Recv:19:47:31.709: ok B:52.0 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:32.718: N41 M105
    Recv:19:47:32.718: ok B:52.0 /0.0 T0:19.7 /0.0 T1:21.3 /0.0
    Send:19:47:33.727: N42 M105
    Recv:19:47:33.728: ok B:52.0 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:34.728: N43 M105
    Recv:19:47:34.729: ok B:51.9 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:35.734: N44 M105
    Recv:19:47:35.735: ok B:51.9 /0.0 T0:19.8 /0.0 T1:21.4 /0.0
    Send:19:47:36.739: N45 M105
    Recv:19:47:36.739: ok B:51.8 /0.0 T0:19.7 /0.0 T1:21.4 /0.0
    Send:19:47:37.748: N46 M105
    Recv:19:47:37.749: ok B:51.8 /0.0 T0:19.7 /0.0 T1:21.4 /0.0
    Send:19:47:38.758: N47 M105
    Recv:19:47:38.759: ok B:51.8 /0.0 T0:19.7 /0.0 T1:21.4 /0.0
    Send:19:47:39.760: N48 M105
    Recv:19:47:39.760: ok B:51.7 /0.0 T0:19.7 /0.0 T1:21.4 /0.0
    Send:19:47:40.764: N49 M105
    Recv:19:47:40.765: ok B:51.7 /0.0 T0:19.7 /0.0 T1:21.4 /0.0
  • Nein Dateien kann man hier nicht anhängen.

    Im connected.log ist alles ok aber kein G28 daher ist der Fehler wohl auch nicht enthalten. Du brauchst auch nur den Teil hier einzufügen, wo der Befehl gensendet wird und das Problem auftritt. Wenn er von diesem Zustand in shutdown wechselt kommt die Meldung von klipper mit
    !! shutdown: Grund
     oder ähnlich. Meist siehst du den Grund auch wenn du oben auf das Vebindungsicon mit der Warnung klickst. Da steht dann die meldung hinter shutdown.
  • Connected.log hab ich kann ich aber erst heute abend senden . Und das mit dem warnungs icon kenn ich , nur wen ich drauf gehe wird mir nur shutdown : klipper angezeigt . Der genaue Grund wird mir da auch nicht immer angezeigt , dann könnt ich es genauer lokalisieren. 

  • connected.log ist aber nur kommunikation bis Druck startet also in dem Fall vorher manuell G28 ausführen, damit es drin ist!
  • Hab ich auch schon getan , wen ich ihn manuell auslöse funktioniert es . Und vor dem Programm start habe ich auch schon den home Befehl ausgeführt , ohne erfolg .
  • Ok, dann steht is am Anfang vom log deines Drucks nicht in connected.log

    Möglicherweise ist das Problem, das die Heizungen vorher aktiviert wurden und entweder diese oder in kombination mit homing während des heizens ein Problem erzeugen. Entweder stimmt die Temperaturänderung nicht mit den erwartungen überein oder endstops klappen nicht mehr zuverlässig wegen übersprechen. So was ist gerne die ursache wenn es isoliert ausgeführt klappt. Aber muss man halt im log sehen was es genau ist.
  • Ok kann ich nachschauen . Aber wen das der Fall wäre , klappt das nur mit Mainsail also gänzlich auf repetier verzichten . Weil die Frage stellt sich mir gerade bei der Aussage. Und welches log ? Server oder System.log sind ja mehrere .
  • Das Problem hat so weit ich das sehen kann nichts mit  Repetier-Server oder Mainsail zu tun. Aber zuerst sollte man die Kommunikation ansehen bevor weitere Schlüsse gezogen werden.

    Im Log Fenster kann man auch aktivieren Drucke zu loggen. Wenn das aktiv ist wird für jeden Druck eine Logdatei erstellt die du hinterher herunterladen kannst mit dem Namen der Datei und dem Datum. Da drin steht die ganze Kommunikation also alles ab dem Zeitpunkt wo der Druck gestartet wird bis zum ende des Drucks der hier dann von der shutdown anfrage von Klipper erfolgt.
  • edited October 2023
    Anbei die Druck datei 20231016184740_3DBenchy
    Also das was ich aus dem log bekommen hab .

    Send:19:47:40.927: Slow command added:M190 S70 ; set bed temperature and wait for it to be reached
    Send:19:47:40.927: N50 M190 S70 ; set bed temperature and wait for it to be reached
    Recv:19:47:40.930: B:51.7 /70.0 T0:19.7 /0.0 T1:21.4 /0.0
    Send:19:47:40.930: N51 M104 S235 ; set temperature
    Send:19:47:41.665: N52 M73 P6
    Recv:19:47:41.929: B:51.6 /70.0 T0:19.7 /0.0 T1:21.4 /0.0
    Recv:19:47:42.930: B:51.6 /70.0 T0:19.7 /0.0 T1:21.4 /0.0
    Recv:19:47:43.931: B:51.5 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:44.931: B:51.5 /70.0 T0:19.7 /0.0 T1:21.4 /0.0
    Recv:19:47:45.932: B:51.5 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:46.934: B:51.5 /70.0 T0:19.7 /0.0 T1:21.4 /0.0
    Recv:19:47:47.934: B:51.4 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:48.936: B:51.4 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:49.936: B:51.4 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:50.938: B:51.4 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:51.938: B:51.4 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:52.938: B:51.3 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:53.939: B:51.3 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:54.939: B:51.3 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:55.940: B:51.4 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:56.941: B:51.4 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:57.942: B:51.4 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:47:58.943: B:51.5 /70.0 T0:19.8 /0.0 T1:21.5 /0.0
    Recv:19:47:59.942: B:51.5 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:00.943: B:51.5 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:01.944: B:51.6 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:02.945: B:51.6 /70.0 T0:19.8 /0.0 T1:21.5 /0.0
    Recv:19:48:03.946: B:51.7 /70.0 T0:19.8 /0.0 T1:21.5 /0.0
    Recv:19:48:04.948: B:51.8 /70.0 T0:19.8 /0.0 T1:21.5 /0.0
    Recv:19:48:05.948: B:51.8 /70.0 T0:19.8 /0.0 T1:21.5 /0.0
    Recv:19:48:06.948: B:51.9 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:07.949: B:52.0 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:08.949: B:52.1 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:09.950: B:52.2 /70.0 T0:19.8 /0.0 T1:21.6 /0.0
    Recv:19:48:10.951: B:52.3 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:11.953: B:52.4 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:48:12.954: B:52.6 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:13.954: B:52.7 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:14.955: B:52.8 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:15.956: B:52.9 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:16.957: B:53.0 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:17.957: B:53.2 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:18.958: B:53.3 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:48:19.959: B:53.4 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:48:20.960: B:53.6 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:48:21.961: B:53.7 /70.0 T0:19.7 /0.0 T1:21.5 /0.0
    Recv:19:49:32.077: B:53.9 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:33.077: B:54.0 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:34.078: B:54.2 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:35.079: B:54.3 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:36.080: B:54.4 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:37.081: B:54.6 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:38.081: B:54.7 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:39.082: B:54.9 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:40.083: B:55.1 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:41.084: B:55.2 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:42.085: B:55.3 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:43.086: B:55.5 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:44.086: B:55.7 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:45.086: B:55.8 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:46.087: B:56.0 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:47.088: B:56.2 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:48.088: B:56.3 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:49.090: B:56.5 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:50.091: B:56.6 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:51.091: B:56.8 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:52.093: B:56.9 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:53.093: B:57.1 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:49:54.095: B:57.2 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:55.096: B:57.4 /70.0 T0:19.8 /0.0 T1:21.6 /0.0
    Recv:19:49:56.096: B:57.6 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:49:57.097: B:57.7 /70.0 T0:19.7 /0.0 T1:21.6 /0.0
    Recv:19:49:58.097: B:57.9 /70.0 T0:19.8 /0.0 T1:21.7 /0.0
    Recv:19:49:59.098: B:58.0 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:00.098: B:58.2 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:01.100: B:58.4 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:02.101: B:58.5 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:03.102: B:58.6 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:04.103: B:58.8 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:05.104: B:59.0 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:06.104: B:59.1 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:07.104: B:59.3 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:08.105: B:59.4 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:09.105: B:59.5 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:10.107: B:59.7 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:11.108: B:59.9 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:12.109: B:60.0 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:13.111: B:60.2 /70.0 T0:19.7 /0.0 T1:21.7 /0.0
    Recv:19:50:14.111: B:60.3 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:15.112: B:60.4 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:16.112: B:60.6 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:17.113: B:60.7 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:18.113: B:60.8 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:19.115: B:61.0 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:20.115: B:61.1 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:21.116: B:61.2 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:22.116: B:61.4 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:23.117: B:61.5 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:24.117: B:61.6 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:25.119: B:61.8 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:26.118: B:61.9 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:27.119: B:62.1 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:28.119: B:62.2 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:29.120: B:62.3 /70.0 T0:19.8 /0.0 T1:21.8 /0.0
    Recv:19:50:30.121: B:62.4 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:31.122: B:62.6 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:32.123: B:62.7 /70.0 T0:19.7 /0.0 T1:21.8 /0.0
    Recv:19:50:33.123: B:62.8 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:34.124: B:63.0 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:35.124: B:63.1 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:36.125: B:63.2 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:37.125: B:63.4 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:38.126: B:63.5 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:39.126: B:63.6 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:40.127: B:63.7 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:41.128: B:63.8 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:42.129: B:64.0 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:43.130: B:64.1 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:44.130: B:64.2 /70.0 T0:19.8 /0.0 T1:21.9 /0.0
    Recv:19:50:45.131: B:64.3 /70.0 T0:19.8 /0.0 T1:21.9 /0.0
    Recv:19:50:46.131: B:64.4 /70.0 T0:19.8 /0.0 T1:21.9 /0.0
    Recv:19:50:47.132: B:64.6 /70.0 T0:19.8 /0.0 T1:21.9 /0.0
    Recv:19:50:48.132: B:64.7 /70.0 T0:19.8 /0.0 T1:21.9 /0.0
    Recv:19:50:49.134: B:64.8 /70.0 T0:19.7 /0.0 T1:21.9 /0.0
    Recv:19:50:50.134: B:64.9 /70.0 T0:19.8 /0.0 T1:21.9 /0.0
    Recv:19:50:51.135: B:65.0 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:50:52.136: B:65.1 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:50:53.136: B:65.2 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:50:54.136: B:65.3 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:50:55.138: B:65.5 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:50:56.139: B:65.6 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:50:57.140: B:65.7 /70.0 T0:19.7 /0.0 T1:22.0 /0.0
    Recv:19:50:58.141: B:65.8 /70.0 T0:19.7 /0.0 T1:22.0 /0.0
    Recv:19:50:59.141: B:65.9 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:51:00.142: B:66.0 /70.0 T0:19.7 /0.0 T1:22.0 /0.0
    Recv:19:51:01.142: B:66.1 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:51:02.143: B:66.2 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:51:03.143: B:66.3 /70.0 T0:19.8 /0.0 T1:22.0 /0.0
    Recv:19:51:04.145: B:66.4 /70.0 T0:19.8 /0.0 T1:22.1 /0.0
    Recv:19:51:05.146: B:66.5 /70.0 T0:19.8 /0.0 T1:22.1 /0.0
    Recv:19:51:06.147: B:66.6 /70.0 T0:19.8 /0.0 T1:22.1 /0.0
    Recv:19:51:07.147: B:66.8 /70.0 T0:19.8 /0.0 T1:22.1 /0.0
    Recv:19:51:08.147: B:66.9 /70.0 T0:19.8 /0.0 T1:22.1 /0.0
    Recv:19:51:09.148: B:66.9 /70.0 T0:19.8 /0.0 T1:22.1 /0.0

  • Ich sags ja ungern aber das ist nur die antwort auf
    M190 S70
    er wartet da bis das Bett heiß ist. Wurde der Rest abgeschnitten weil der Text zu lang war? Von interesse sind eher die letzten 200 zeilen bis zur shutdown Meldung.
  • Ist mir schon klar nur war das nur in dieser Datei leider enthalten .
  • edited October 2023
    Ich weiß auch das bei 68 das ganze anfängt dann bricht er ab . Oder besser gesagt kommt der Fehler.
    Aber hey wenigstens komm ich mir nicht ganz blöd vor wen man solche Daten zur Fehler suche ausgespuckt bekommt .
  • Zur Überprüfung hab ich das ganze nochmal durchgeführt . Bekomme keine andere datei das Heizbed geht auf 68° dann machen die achsen kurz einen ruck die Temperatur für Extruder 0 wird eingeschalten und der drucker geht in einen fehler zustand . Bei der anzeige steht dann // Klipper state : Shutdown . und bislang keinen anderen fehler code erhalten . Einzige idee was ich im moment habe ein Pid tuning für meine Hotends durchzuführen glaube nur nicht dran das dies mein Problem behebt . Muss ich leider sagen . 
  • Du kannst noch das klipper log ansehen. Steht in /tmp/klippy_<slug>.log leider hab ich gemerkt das wenn der Rechner zu schnell ist das log nicht im Server angezeigt wird.

    Zum anzeigen im Terminal
    tail -500 /tmp/klippy_<slug>.log

    um die letzten 500 Zeilen zu sehen.
  • edited October 2023
    So hab den Fehler übers Wochenende gefunden . Der Fehler lag nicht bei der Software. Die Netzteile waren zu klein ausgelegt . Wen bed und hotend gleichzeitig liefen ging der Drucker in einen Fehler. Problem ist behoben . Hab nur noch Probleme beim Drucken von radien . Danke für die Hilfe und Mühen.
Sign In or Register to comment.