Browse Source

Fixed Creality CR-20 Pro configuration example (#16332)

yedey 5 years ago
parent
commit
a49c6608c9
1 changed files with 11 additions and 11 deletions
  1. 11
    11
      config/examples/Creality/CR-20 Pro/Configuration.h

+ 11
- 11
config/examples/Creality/CR-20 Pro/Configuration.h View File

330
   //#define PSU_DEFAULT_OFF         // Keep power off until enabled directly with M80
330
   //#define PSU_DEFAULT_OFF         // Keep power off until enabled directly with M80
331
   //#define PSU_POWERUP_DELAY 100   // (ms) Delay for the PSU to warm up to full power
331
   //#define PSU_POWERUP_DELAY 100   // (ms) Delay for the PSU to warm up to full power
332
 
332
 
333
-  //#define AUTO_POWER_CONTROL  // Enable automatic control of the PS_ON pin
333
+  //#define AUTO_POWER_CONTROL      // Enable automatic control of the PS_ON pin
334
   #if ENABLED(AUTO_POWER_CONTROL)
334
   #if ENABLED(AUTO_POWER_CONTROL)
335
-    #define AUTO_POWER_FANS           // Turn on PSU if fans need power
335
+    #define AUTO_POWER_FANS         // Turn on PSU if fans need power
336
     #define AUTO_POWER_E_FANS
336
     #define AUTO_POWER_E_FANS
337
     #define AUTO_POWER_CONTROLLERFAN
337
     #define AUTO_POWER_CONTROLLERFAN
338
     #define AUTO_POWER_CHAMBER_FAN
338
     #define AUTO_POWER_CHAMBER_FAN
931
  *
931
  *
932
  * Specify a Probe position as { X, Y, Z }
932
  * Specify a Probe position as { X, Y, Z }
933
  */
933
  */
934
-#define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 }
934
+#define NOZZLE_TO_PROBE_OFFSET { -43, -5, 0 }
935
 
935
 
936
 // Most probes should stay away from the edges of the bed, but
936
 // Most probes should stay away from the edges of the bed, but
937
 // with NOZZLE_AS_PROBE this can be negative for a wider probing area.
937
 // with NOZZLE_AS_PROBE this can be negative for a wider probing area.
1031
 // @section machine
1031
 // @section machine
1032
 
1032
 
1033
 // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
1033
 // Invert the stepper direction. Change (or reverse the motor connector) if an axis goes the wrong way.
1034
-#define INVERT_X_DIR true
1035
-#define INVERT_Y_DIR true
1036
-#define INVERT_Z_DIR false
1034
+#define INVERT_X_DIR false
1035
+#define INVERT_Y_DIR false
1036
+#define INVERT_Z_DIR true
1037
 
1037
 
1038
 // @section extruder
1038
 // @section extruder
1039
 
1039
 
1040
 // For direct drive extruder v9 set to true, for geared extruder set to false.
1040
 // For direct drive extruder v9 set to true, for geared extruder set to false.
1041
-#define INVERT_E0_DIR true
1041
+#define INVERT_E0_DIR false
1042
 #define INVERT_E1_DIR false
1042
 #define INVERT_E1_DIR false
1043
 #define INVERT_E2_DIR false
1043
 #define INVERT_E2_DIR false
1044
 #define INVERT_E3_DIR false
1044
 #define INVERT_E3_DIR false
1100
 #endif
1100
 #endif
1101
 
1101
 
1102
 #if EITHER(MIN_SOFTWARE_ENDSTOPS, MAX_SOFTWARE_ENDSTOPS)
1102
 #if EITHER(MIN_SOFTWARE_ENDSTOPS, MAX_SOFTWARE_ENDSTOPS)
1103
-  //#define SOFT_ENDSTOPS_MENU_ITEM  // Enable/Disable software endstops from the LCD
1103
+  #define SOFT_ENDSTOPS_MENU_ITEM  // Enable/Disable software endstops from the LCD
1104
 #endif
1104
 #endif
1105
 
1105
 
1106
 /**
1106
 /**
1326
 // - Move the Z probe (or nozzle) to a defined XY point before Z Homing when homing all axes (G28).
1326
 // - Move the Z probe (or nozzle) to a defined XY point before Z Homing when homing all axes (G28).
1327
 // - Prevent Z homing when the Z probe is outside bed area.
1327
 // - Prevent Z homing when the Z probe is outside bed area.
1328
 //
1328
 //
1329
-//#define Z_SAFE_HOMING
1329
+#define Z_SAFE_HOMING
1330
 
1330
 
1331
 #if ENABLED(Z_SAFE_HOMING)
1331
 #if ENABLED(Z_SAFE_HOMING)
1332
   #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1332
   #define Z_SAFE_HOMING_X_POINT ((X_BED_SIZE) / 2)    // X point for Z homing when homing all axes (G28).
1454
 
1454
 
1455
 #define PREHEAT_2_LABEL       "ABS"
1455
 #define PREHEAT_2_LABEL       "ABS"
1456
 #define PREHEAT_2_TEMP_HOTEND 240
1456
 #define PREHEAT_2_TEMP_HOTEND 240
1457
-#define PREHEAT_2_TEMP_BED      0
1457
+#define PREHEAT_2_TEMP_BED     70
1458
 #define PREHEAT_2_FAN_SPEED   255 // Value from 0 to 255
1458
 #define PREHEAT_2_FAN_SPEED   255 // Value from 0 to 255
1459
 
1459
 
1460
 /**
1460
 /**
1717
 // If you have a speaker that can produce tones, enable it here.
1717
 // If you have a speaker that can produce tones, enable it here.
1718
 // By default Marlin assumes you have a buzzer with a fixed frequency.
1718
 // By default Marlin assumes you have a buzzer with a fixed frequency.
1719
 //
1719
 //
1720
-#define SPEAKER
1720
+//#define SPEAKER
1721
 
1721
 
1722
 //
1722
 //
1723
 // The duration and frequency for the UI feedback sound.
1723
 // The duration and frequency for the UI feedback sound.

Loading…
Cancel
Save