Zdravím vás a žádám o pomoc. Postavil sem si tiskárnu o rozmerech pro tisk 450*450*550 a nevím si rady. Firmware mam Marlin z gmax1.5+ tiskárny a HW: 500w ATX zdroj, Ramps 1.4, arduino mega 2560, motorky (Nema 17, 0.4nm, 1.7A) a drivery A4988, 40w topné těleso, lcd 12864. Problém je ten že když zapnu nahřívání tak se tiskárna začne dokola restartovat a nic se neděje a to stejné u os Y,Z , jak s nimi začnu hejbat tak v nich začne cvakat a když jim přidám trochu proudu na potenciometru, tak se tiskárna restartuje. Prosím o pomoc a děkuji za každou radu.
// Travel limits after homing
#define X_MAX_POS 430
#define X_MIN_POS 0
#define Y_MAX_POS 430
#define Y_MIN_POS 0
#define Z_MAX_POS 540
#define Z_MIN_POS 0
//// MOVEMENT SETTINGS
#define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E
//gmax 1.5 +
#define HOMING_FEEDRATE {55*60, 55*60, 16*60, 0} // set the homing speeds (mm/min)
//gMax 1.5
//#define HOMING_FEEDRATE {75*60, 75*60, 6*60, 0} // set the homing speeds (mm/min)
//for gmax 1.5 + Uncomment below
#define DEFAULT_AXIS_STEPS_PER_UNIT {80, 80, 1828, 92} // gMax 1.5 PLUS values with stepstruder, alum timing belt pulleys, mk7 gear
#define DEFAULT_MAX_FEEDRATE {500, 500, 8, 25} // gMax 1.5 PLUS. 2mm pitch lead screw. (mm/sec) Z was 5, changed for gMax 1.5 plus
#define DEFAULT_MAX_ACCELERATION {600,600,100,1000} // gMax 1.5 PLUS lower values. X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot.
#define DEFAULT_ACCELERATION 500 // gMax changed to 1100. X, Y, Z and E max acceleration in mm/s^2 for printing moves
#define DEFAULT_RETRACT_ACCELERATION 550 // gMax changes to 90X, Y, Z and E max acceleration in mm/s^2 for retracts
// The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously)
#define DEFAULT_XYJERK 20.0 // (mm/sec)
#define DEFAULT_ZJERK 0.4 // (mm/sec)
#define DEFAULT_EJERK 5.0 // (mm/sec)