
Fehlermeldung bei Marlin - Bin mit meim Latein am Ende 08. November 2017 12:15 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 24 |
#define MSG_THERMAL_RUNAWAY LCD_STR_THERMOMETER _UxGT(" NICHT ERREICHT")
.//=========================================================================== //======================== Thermal Runaway Protection ======================= //=========================================================================== /** * Thermal Protection protects your printer from damage and fire if a * thermistor falls out or temperature sensors fail in any way. * * The issue: If a thermistor falls out or a temperature sensor fails, * Marlin can no longer sense the actual temperature. Since a disconnected * thermistor reads as a low temperature, the firmware will keep the heater on. * * If you get "Thermal Runaway" or "Heating failed" errors the * details can be tuned in Configuration_adv.h */ #define THERMAL_PROTECTION_HOTENDS // Enable thermal protection for all extruders #define THERMAL_PROTECTION_BED // Enable thermal protection for the heated bed.
/** * Thermal Protection protects your printer from damage and fire if a * thermistor falls out or temperature sensors fail in any way. * * The issue: If a thermistor falls out or a temperature sensor fails, * Marlin can no longer sense the actual temperature. Since a disconnected * thermistor reads as a low temperature, the firmware will keep the heater on. * * The solution: Once the temperature reaches the target, start observing. * If the temperature stays too far below the target (hysteresis) for too long (period), * the firmware will halt the machine as a safety precaution. * * If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD */ #if ENABLED(THERMAL_PROTECTION_HOTENDS) #define THERMAL_PROTECTION_PERIOD 40 // Seconds #define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius.
Re: Fehlermeldung bei Marlin - Bin mit meim Latein am Ende 08. November 2017 12:39 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 84 |
* If you get false positives for "Heating failed" increase WATCH_TEMP_PERIOD and/or decrease WATCH_TEMP_INCREASE * WATCH_TEMP_INCREASE should not be below 2. */ #define WATCH_TEMP_PERIOD 20 // Seconds #define WATCH_TEMP_INCREASE 2 // Degrees Celsius
* If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD */ #if ENABLED(THERMAL_PROTECTION_HOTENDS) #define THERMAL_PROTECTION_PERIOD 80 // Seconds #define THERMAL_PROTECTION_HYSTERESIS 8 // Degrees Celsius
Re: Fehlermeldung bei Marlin - Bin mit meim Latein am Ende 08. November 2017 13:57 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.361 |

Re: Fehlermeldung bei Marlin - Bin mit meim Latein am Ende 08. November 2017 14:28 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 84 |
Re: Fehlermeldung bei Marlin - Bin mit meim Latein am Ende 08. November 2017 14:45 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 24 |
Quote
The Hidden
Bevor du an den Sicherheits Toleranzen innerhalb der FW rum bastelst....
Kontrollier mal das Kabel vom Thermistor und schau doch mal bitte nach ob Du den richtigen Thermistor in der FW eingetragen hast.
Das HotEnd auf Temperatur Stuerung am PID laufen hast, bzw. mal nen PID Autotune machen.
Wenn Du nict weiß was ich meine, bitte mal nach Thermistor E3D + deine FW googeln.
Und Pid Autotune + deine FW....
Ein HE mit passendem Thermistor und eingestellen PID Werten sollte sowas normal nicht machen
Re: Fehlermeldung bei Marlin - Bin mit meim Latein am Ende 08. November 2017 14:58 |
Registrierungsdatum: 10 Jahre zuvor Beiträge: 1.361 |


Re: Fehlermeldung bei Marlin - Bin mit meim Latein am Ende 08. November 2017 15:11 |
Registrierungsdatum: 8 Jahre zuvor Beiträge: 24 |
// PID Tuning Guide here: [reprap.org] // Comment the following line to disable PID and enable bang-bang. #define PIDTEMP #define BANG_MAX 255 // limits current to nozzle while in bang-bang mode; 255=full current #define PID_MAX BANG_MAX // limits current to nozzle while PID is active (see PID_FUNCTIONAL_RANGE below); 255=full current #if ENABLED(PIDTEMP) #define PID_AUTOTUNE_MENU // Add PID Autotune to the LCD "Temperature" menu to run M303 and apply the result. //#define PID_DEBUG // Sends debug data to the serial port. //#define PID_OPENLOOP 1 // Puts PID in open loop. M104/M140 sets the output power from 0 to PID_MAX //#define SLOW_PWM_HEATERS // PWM with very low frequency (roughly 0.125Hz=8s) and minimum state time of approximately 1s useful for heaters driven by a relay //#define PID_PARAMS_PER_HOTEND // Uses separate PID parameters for each extruder (useful for mismatched extruders) // Set/get with gcode: M301 E[extruder number, 0-2] #define PID_FUNCTIONAL_RANGE 10 // If the temperature difference between the target temperature and the actual temperature // is more than PID_FUNCTIONAL_RANGE then the PID will be shut off and the heater will be set to min/max. #define K1 0.95 //smoothing factor within the PID // If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it // Ultimaker #define DEFAULT_Kp 28.52 #define DEFAULT_Ki 1.99 #define DEFAULT_Kd 102.20weil wenn ich das erste auskommentiere ist An Aus drin oder?