Skip to content

Commit

Permalink
Max bed temperature.
Browse files Browse the repository at this point in the history
PID settings
DEFAULT_AXIS_STEPS_PER_UNIT
DEFAULT_MAX_ACCELERATION
DEFAULT_ACCELERATION
DEFAULT_RETRACT_ACCELERATION
DEFAULT_TRAVEL_ACCELERATION
Z_PROBE_OFFSET_FROM_EXTRUDER
X_PROBE_OFFSET_FROM_EXTRUDER
Y_PROBE_OFFSET_FROM_EXTRUDER
X_MIN_POS
Y_MIN_POS
LEFT_PROBE_BED_POSITION
RIGHT_PROBE_BED_POSITION
FRONT_PROBE_BED_POSITION
PROBE_BED_POSITION
Z_SAFE_HOMING
  • Loading branch information
lifestohack committed Feb 14, 2018
1 parent 1f7f0dc commit 02bf383
Showing 1 changed file with 23 additions and 18 deletions.
41 changes: 23 additions & 18 deletions Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
#define HEATER_2_MAXTEMP 275
#define HEATER_3_MAXTEMP 275
#define HEATER_4_MAXTEMP 275
#define BED_MAXTEMP 150
#define BED_MAXTEMP 80

//===========================================================================
//============================= PID Settings ================================
Expand All @@ -355,10 +355,15 @@
// If you are using a pre-configured hotend then you can use one of the value sets by uncommenting it

// Ultimaker
//#define DEFAULT_Kp 31.76
//#define DEFAULT_Ki 3.03
//#define DEFAULT_Kd 83.27

//HyperCube Evolution
#define DEFAULT_Kp 31.76
#define DEFAULT_Ki 3.03
#define DEFAULT_Kd 83.27

// MakerGear
//#define DEFAULT_Kp 7.0
//#define DEFAULT_Ki 0.1
Expand Down Expand Up @@ -529,7 +534,7 @@
* Override with M92
* X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
*/
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 400, 500 }
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 800, 95 }

/**
* Default Max Feed Rate (mm/s)
Expand All @@ -544,7 +549,7 @@
* Override with M201
* X, Y, Z, E0 [, E1[, E2[, E3[, E4]]]]
*/
#define DEFAULT_MAX_ACCELERATION { 2000, 2000, 100, 10000 }
#define DEFAULT_MAX_ACCELERATION { 3000, 3000, 100, 10000 }

/**
* Default Acceleration (change/s) change = mm/s
Expand All @@ -554,9 +559,9 @@
* M204 R Retract Acceleration
* M204 T Travel Acceleration
*/
#define DEFAULT_ACCELERATION 2000 // X, Y, Z and E acceleration for printing moves
#define DEFAULT_RETRACT_ACCELERATION 2000 // E acceleration for retracts
#define DEFAULT_TRAVEL_ACCELERATION 2000 // X, Y, Z acceleration for travel (non printing) moves
#define DEFAULT_ACCELERATION 3000 // X, Y, Z and E acceleration for printing moves
#define DEFAULT_RETRACT_ACCELERATION 3000 // E acceleration for retracts
#define DEFAULT_TRAVEL_ACCELERATION 3000 // X, Y, Z acceleration for travel (non printing) moves

/**
* Default Jerk (mm/s)
Expand Down Expand Up @@ -683,9 +688,9 @@
* O-- FRONT --+
* (0,0)
*/
#define X_PROBE_OFFSET_FROM_EXTRUDER 10 // X offset: -left +right [of the nozzle]
#define Y_PROBE_OFFSET_FROM_EXTRUDER 10 // Y offset: -front +behind [the nozzle]
#define Z_PROBE_OFFSET_FROM_EXTRUDER 0 // Z offset: -below +above [the nozzle]
#define X_PROBE_OFFSET_FROM_EXTRUDER 25 // X offset: -left +right [of the nozzle]
#define Y_PROBE_OFFSET_FROM_EXTRUDER 0 // Y offset: -front +behind [the nozzle]
#define Z_PROBE_OFFSET_FROM_EXTRUDER -0.65 // Z offset: -below +above [the nozzle]

// X and Y axis travel speed (mm/m) between probes
#define XY_PROBE_SPEED 8000
Expand Down Expand Up @@ -784,8 +789,8 @@
#define Y_BED_SIZE 240

// Travel limits (mm) after homing, corresponding to endstop positions.
#define X_MIN_POS 0
#define Y_MIN_POS 0
#define X_MIN_POS -70
#define Y_MIN_POS -100
#define Z_MIN_POS 0
#define X_MAX_POS X_BED_SIZE
#define Y_MAX_POS Y_BED_SIZE
Expand Down Expand Up @@ -914,10 +919,10 @@
#define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X

// Set the boundaries for probing (where the probe can reach).
#define LEFT_PROBE_BED_POSITION 10
#define RIGHT_PROBE_BED_POSITION 180
#define FRONT_PROBE_BED_POSITION 10
#define BACK_PROBE_BED_POSITION 230
#define LEFT_PROBE_BED_POSITION 25
#define RIGHT_PROBE_BED_POSITION 210
#define FRONT_PROBE_BED_POSITION 0
#define BACK_PROBE_BED_POSITION 220

// The Z probe minimum outer margin (to validate G29 parameters).
#define MIN_PROBE_EDGE 10
Expand Down Expand Up @@ -1031,7 +1036,7 @@
// - Move the Z probe (or nozzle) to a defined XY point before Z Homing when homing all axes (G28).
// - Prevent Z homing when the Z probe is outside bed area.
//
//#define Z_SAFE_HOMING
#define Z_SAFE_HOMING

#if ENABLED(Z_SAFE_HOMING)
#define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2) // X point for Z homing when homing all axes (G28).
Expand Down Expand Up @@ -1770,4 +1775,4 @@
// With this option servos are powered only during movement, then turned off to prevent jitter.
//#define DEACTIVATE_SERVOS_AFTER_MOVE

#endif // CONFIGURATION_H
#endif // CONFIGURATION_H

0 comments on commit 02bf383

Please sign in to comment.