Willkommen! Anmelden Ein neues Profil erzeugen

Erweiterte Suche

Druckproblem

geschrieben von cryze 
Druckproblem
26. January 2014 06:03
Hey Leute,

ich habe einen Mendel i2 erstanden aber bekomme einfach nix gedruckt.

Als software verwende ich Cura, mit dem sich auch eine Verbindung aufbauen lässt und ich manuell alle Achsen anfahren und heinzen kann.
So bald aber die Drucktemp. erreicht ist und der Drucker durcken sollte bekomme ich diese Fehlermeldung:

Serial Error: Line Number is not Last Line Number+1, Last Line:3
Unknown command:
N3T0*25
Serial Error: Line Number is not Last Line Number+1, Last Line:3
Serial Error: Line Number is not Last Line Number+1, Last Line:3
Error: checksum mismatch, Last Line:3


Ach ja hab bei der Elektronik (RAPMS 1.3) auch schon mal den Restetknopf gedrückt.

Hoffe einer hat eine Idee.

Gruß, Max
Re: Druckproblem
26. January 2014 06:12
Das Problem besteht in der Kommunikation mit dem Drucker.
Schlechtes Kabel? Irgendwelche Einstreuungen /fehlende Abschirmung?
In dieser Richtung würde ich mal suchen.


Gruß
Boris
--
DIY Mendel90
Gen7 1.4.1 mit Repetier Firmware 0.91 + Repetier Host
Gen7 Extension Board mit LCD, SD-Card, Bluetooth und FAN-Control
Re: Druckproblem
26. January 2014 06:16
Das kabel sollte eig noch gut sein, hat auch einen Pharitkern drauf und hab es extra so verlegt das es zu keinen Störungen kommt.
Ich probier mal ein anderes vllt hilfts.
Re: Druckproblem
26. January 2014 07:20
Habs mal mit einem anderen Kabel probiert, dazu dann die kabel und Print noch etwas mit Alufolie geschiermt und mich etwas mit den Com settings gespielt.
Ein paar mal warns bissl weniger Fehlermeldungen dann wieder mal mehr usw aber laufen tuts immer noch nicht..

EDITT:

Jz hab ich nur noch diesen Fehler:

Unknown command:
N3T0*25

1-mal bearbeitet. Zuletzt am 26.01.14 07:26.
Re: Druckproblem
30. January 2014 14:28
Versuch doch mal eine andere Baudrate.
Sprich Flash mal die Firmware neu und pass vorher die Baudrate an und versuch dich dann noch einmal zu verbinden.
Langsamer ist nicht unbedingt stabiler...
Leg den Ferritkern mal nur um die 12 Volt Netzleitung.
Alle Kabel möglichst weit entfernt von den Schrittmotorkabeln verlegen.

Hast du denn schon mal versucht dich mit einer anderen Hostsoftware zu verbinden? z.B. Repetier Host?

1-mal bearbeitet. Zuletzt am 30.01.14 14:30.


Gruß Leif

______________________________________________________________________

RepRap Prusa (ABS); M5 Z-Achse; 1:50 Direkt-Drive-Extruder+MK7-Gear; 0.4mm Düse; MK1 Heizbett mit SSR; Meanwell SP320-12 @13,5 Volt; Sanguinololu V1.3a mit Marlin Firmware Jan 2014
Repetier-Host V0.95e und Slic3r 1.0.0. RC2 / Cura 13.11.2 - Windows 7 X64

MakerBot Replicator 2

capitaenz @ Thingiverse
Re: Druckproblem
30. January 2014 16:03
Ich hab jz die neueset repetier FW rauf gespielt und verwende auch den Repetier Host.
Es läuft nun auch fast alles mit den Motoren und den Endstops hab ich keine Probleme mehr auch der Extruder heizt muss zwar noch alles genau abstimmen aber das sollte kein Problem mehr sein.
Einzig mit dem Heizpad hab ich noch Probleme, das heizt nicht so wie es soll...
Wenn ich bei "HEATED_BED_PID_MAX" 255 einstelle heizt es nur ganz kurzt bei 250 gehts schon besser aber auch nicht lange genug mit 100 würds gehn allerdings flackert dann die LED und es wird nur sehr langsam warm.

hier mal der Auszug vom Code


/** \brief Set true if you have a heated bed conected to your board, false if not */
#define HAVE_HEATED_BED true

#define HEATED_BED_MAX_TEMP 115
/** Skip M190 wait, if heated bed is already within x degrees. Fixed numbers only, 0 = off. */
#define SKIP_M190_IF_WITHIN 15

// Select type of your heated bed. It's the same as for EXT0_TEMPSENSOR_TYPE
// set to 0 if you don't have a heated bed
#define HEATED_BED_SENSOR_TYPE 1
/** Analog pin of analog sensor to read temperature of heated bed.  */
#define HEATED_BED_SENSOR_PIN TEMP_1_PIN
/** \brief Pin to enable heater for bed. */
#define HEATED_BED_HEATER_PIN HEATER_1_PIN
// How often the temperature of the heated bed is set (msec)
#define HEATED_BED_SET_INTERVAL 1000

/**
Heat manager for heated bed:
0 = Bang Bang, fast update
1 = PID controlled
2 = Bang Bang, limited check every HEATED_BED_SET_INTERVAL. Use this with relais driven beds to save life
*/
#define HEATED_BED_HEAT_MANAGER 1
/** \brief The maximum value, I-gain can contribute to the output. 
The precise values may differ for different nozzle/resistor combination. 
 Overridden if EEPROM activated.
*/
#define HEATED_BED_PID_INTEGRAL_DRIVE_MAX 255
/** \brief lower value for integral part

The I state should converge to the exact heater output needed for the target temperature.
To prevent a long deviation from the target zone, this value limits the lower value.
A good start is 30 lower then the optimal value. You need to leave room for cooling.
 Overridden if EEPROM activated.
*/
#define HEATED_BED_PID_INTEGRAL_DRIVE_MIN 80
/** P-gain.  Overridden if EEPROM activated. */
#define HEATED_BED_PID_PGAIN   255
/** I-gain  Overridden if EEPROM activated.*/
#define HEATED_BED_PID_IGAIN   33.02
/** Dgain.  Overridden if EEPROM activated.*/
#define HEATED_BED_PID_DGAIN 290
// maximum time the heater is can be switched on. Max = 255.  Overridden if EEPROM activated.
#define HEATED_BED_PID_MAX 250

/** Include PID control for all heaters. */
#define TEMP_PID true

//// Experimental watchdog and minimal temp
// The watchdog waits for the watchperiod in milliseconds whenever an M104 or M109 increases the target temperature
// If the temperature has not increased at the end of that period, the target temperature is set to zero. It can be reset with another M104/M109
//#define WATCHPERIOD 5000 //5 seconds

//// The minimal temperature defines the temperature below which the heater will not be enabled
#define MINTEMP 30

//// Experimental max temp
// When temperature exceeds max temp, your heater will be switched off.
// This feature exists to protect your hotend from overheating accidentally, but *NOT* from thermistor short/failure!
// You should use MINTEMP for thermistor short/failure protection.
#define MAXTEMP 150

/** Extreme values to detect defect thermistors. */
#define MIN_DEFECT_TEMPERATURE -10
#define MAX_DEFECT_TEMPERATURE 300

/** \brief Used reference, normally ANALOG_REF_AVCC or ANALOG_REF_AREF for experts ANALOG_REF_INT_2_56 = 2.56V and ANALOG_REF_INT_1_1=1.1V inernaly generated */
#define ANALOG_REF ANALOG_REF_AVCC
In diesem Forum dürfen leider nur registrierte Teilnehmer schreiben.

Klicke hier, um Dich einzuloggen