Browse Source

tweak height, homing and bed temperature control

Thomas Buck 3 years ago
parent
commit
824ae4a0fc
2 changed files with 5 additions and 5 deletions
  1. 2
    2
      Marlin/Configuration.h
  2. 3
    3
      Marlin/Configuration_adv.h

+ 2
- 2
Marlin/Configuration.h View File

1132
 #define Z_MIN_POS 0
1132
 #define Z_MIN_POS 0
1133
 #define X_MAX_POS X_BED_SIZE
1133
 #define X_MAX_POS X_BED_SIZE
1134
 #define Y_MAX_POS Y_BED_SIZE
1134
 #define Y_MAX_POS Y_BED_SIZE
1135
-#define Z_MAX_POS 165
1135
+#define Z_MAX_POS 200
1136
 
1136
 
1137
 /**
1137
 /**
1138
  * Software Endstops
1138
  * Software Endstops
1386
 // - Move the Z probe (or nozzle) to a defined XY point before Z Homing.
1386
 // - Move the Z probe (or nozzle) to a defined XY point before Z Homing.
1387
 // - Prevent Z homing when the Z probe is outside bed area.
1387
 // - Prevent Z homing when the Z probe is outside bed area.
1388
 //
1388
 //
1389
-//#define Z_SAFE_HOMING
1389
+#define Z_SAFE_HOMING
1390
 
1390
 
1391
 #if ENABLED(Z_SAFE_HOMING)
1391
 #if ENABLED(Z_SAFE_HOMING)
1392
   #define Z_SAFE_HOMING_X_POINT X_CENTER  // X point for Z homing
1392
   #define Z_SAFE_HOMING_X_POINT X_CENTER  // X point for Z homing

+ 3
- 3
Marlin/Configuration_adv.h View File

128
 // Heated Bed Bang-Bang options
128
 // Heated Bed Bang-Bang options
129
 //
129
 //
130
 #if DISABLED(PIDTEMPBED)
130
 #if DISABLED(PIDTEMPBED)
131
-  #define BED_CHECK_INTERVAL 2000   // (ms) Interval between checks in bang-bang control
131
+  #define BED_CHECK_INTERVAL 1000   // (ms) Interval between checks in bang-bang control
132
   #if ENABLED(BED_LIMIT_SWITCHING)
132
   #if ENABLED(BED_LIMIT_SWITCHING)
133
     #define BED_HYSTERESIS 2        // (°C) Only set the relevant heater state when ABS(T-target) > BED_HYSTERESIS
133
     #define BED_HYSTERESIS 2        // (°C) Only set the relevant heater state when ABS(T-target) > BED_HYSTERESIS
134
   #endif
134
   #endif
214
  * Thermal Protection parameters for the bed are just as above for hotends.
214
  * Thermal Protection parameters for the bed are just as above for hotends.
215
  */
215
  */
216
 #if ENABLED(THERMAL_PROTECTION_BED)
216
 #if ENABLED(THERMAL_PROTECTION_BED)
217
-  #define THERMAL_PROTECTION_BED_PERIOD        20 // Seconds
218
-  #define THERMAL_PROTECTION_BED_HYSTERESIS     2 // Degrees Celsius
217
+  #define THERMAL_PROTECTION_BED_PERIOD        60 // Seconds
218
+  #define THERMAL_PROTECTION_BED_HYSTERESIS     5 // Degrees Celsius
219
 
219
 
220
   /**
220
   /**
221
    * As described above, except for the bed (M140/M190/M303).
221
    * As described above, except for the bed (M140/M190/M303).

Loading…
Cancel
Save