Willkommen! Anmelden Ein neues Profil erzeugen

Erweiterte Suche

Probleme beim Aufheitzen Mit neuer Marlin FW

geschrieben von ossilampe 
Probleme beim Aufheitzen Mit neuer Marlin FW
31. January 2016 07:10
Hallo,

Ich habe zuge des umbaus meiner Druckers auf Diamant Hotend auch die eine neuere Version von Malin (1.1.0-RC3) installiert.
Nun bekomme ich folgende Vehlermeldung


und ab und an wenn er mal aufgeheizt hat, bleibt er einfach wärend dem druck stehen


hat da jemand eine lösung für???

gruss Tom
Re: Probleme beim Aufheitzen Mit neuer Marlin FW
31. January 2016 07:55
//===========================================================================
//======================== Thermal Runaway Protection =======================
//===========================================================================

/**
* Thermal Runaway 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,
* the firmware will halt as a safety precaution.
*/

#define THERMAL_PROTECTION_HOTENDS // Enable thermal protection for all extruders
#define THERMAL_PROTECTION_BED // Enable thermal protection for the heated bed




einfach auskommentieren....


oder eben anpassen....

* Thermal Protection parameters
*/
#if ENABLED(THERMAL_PROTECTION_HOTENDS)
#define THERMAL_PROTECTION_PERIOD 40 // Seconds
#define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius

/**
* Whenever an M104 or M109 increases the target temperature the firmware will wait for the
* WATCH_TEMP_PERIOD to expire, and if the temperature hasn't increased by WATCH_TEMP_INCREASE
* degrees, the machine is halted, requiring a hard reset. This test restarts with any M104/M109,
* but only if the current temperature is far enough below the target for a reliable test.
*/
#define WATCH_TEMP_PERIOD 16 // Seconds
#define WATCH_TEMP_INCREASE 4 // Degrees Celsius
#endif

#if ENABLED(THERMAL_PROTECTION_BED)
#define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
#define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
#endif



erstes findest du in der config.h, zweiteres in der config.adv.

1-mal bearbeitet. Zuletzt am 31.01.16 07:57.


[www.facebook.com]

Power is nothing.....without control!
Re: Probleme beim Aufheitzen Mit neuer Marlin FW
31. January 2016 08:03
@Stud54

Danke, das Probiere ich mal,
und wie ist das mit meinem 2 Problem, Heading Failed???

oder ist das beides das gleiche Problem???

gruss???
Re: Probleme beim Aufheitzen Mit neuer Marlin FW
31. January 2016 08:25
Das ist das resultierende Problem....deine Temp wird nicht in der Zeit erreicht, die Marlin vorgibt. Ist aber auch irgendwo klar, dein Diamond hat halt auch mehr Masse, die aufgeheizt werden will.


[www.facebook.com]

Power is nothing.....without control!
In diesem Forum dürfen leider nur registrierte Teilnehmer schreiben.

Klicke hier, um Dich einzuloggen