Fix Mesh bed leveling for Chiron without BLTouch or TFT Levelling.

This commit is contained in:
Knutwurst
2021-04-11 18:27:53 +02:00
parent e4a5191178
commit 6f4ee21cc9
2 changed files with 13 additions and 21 deletions

View File

@@ -1216,10 +1216,14 @@
//#define NOZZLE_TO_PROBE_OFFSET { 29, -15, 0 } //X-Carriage //#define NOZZLE_TO_PROBE_OFFSET { 29, -15, 0 } //X-Carriage
#endif #endif
#if DISABLED(KNUTWURST_BLTOUCH) #if ENABLED(KNUTWURST_TFT_LEVELING)
#define NOZZLE_TO_PROBE_OFFSET { 0, 0, -17 } // Chiron Default Value! #define NOZZLE_TO_PROBE_OFFSET { 0, 0, -17 } // Chiron Default Value!
#endif #endif
#if NONE(KNUTWURST_BLTOUCH, KNUTWURST_TFT_LEVELING)
#define NOZZLE_TO_PROBE_OFFSET { 10, 10, 0 }
#endif
// Most probes should stay away from the edges of the bed, but // Most probes should stay away from the edges of the bed, but
// with NOZZLE_AS_PROBE this can be negative for a wider probing area. // with NOZZLE_AS_PROBE this can be negative for a wider probing area.
#define MIN_PROBE_EDGE 30 #define MIN_PROBE_EDGE 30

View File

@@ -424,26 +424,14 @@
* the fan will turn on when any selected extruder is above the threshold. * the fan will turn on when any selected extruder is above the threshold.
*/ */
#if ANY(KNUTWURST_MEGA, KNUTWURST_MEGA_S, KNUTWURST_MEGA_X, KNUTWURST_MEGA_P, KNUTWURST_CHIRON) #define E0_AUTO_FAN_PIN FAN2_PIN
#define E0_AUTO_FAN_PIN FAN2_PIN #define E1_AUTO_FAN_PIN -1
#define E1_AUTO_FAN_PIN -1 #define E2_AUTO_FAN_PIN -1
#define E2_AUTO_FAN_PIN -1 #define E3_AUTO_FAN_PIN -1
#define E3_AUTO_FAN_PIN -1 #define E4_AUTO_FAN_PIN -1
#define E4_AUTO_FAN_PIN -1 #define E5_AUTO_FAN_PIN -1
#define E5_AUTO_FAN_PIN -1 #define CHAMBER_AUTO_FAN_PIN -1
#define CHAMBER_AUTO_FAN_PIN -1
#endif
/*
#if ENABLED(KNUTWURST_CHIRON) // this might need some rework
#define E0_AUTO_FAN_PIN -1
#define E1_AUTO_FAN_PIN -1
#define E2_AUTO_FAN_PIN -1
#define E3_AUTO_FAN_PIN -1
#define E4_AUTO_FAN_PIN -1
#define E5_AUTO_FAN_PIN -1
#define CHAMBER_AUTO_FAN_PIN -1
#endif
*/
#define EXTRUDER_AUTO_FAN_TEMPERATURE 50 #define EXTRUDER_AUTO_FAN_TEMPERATURE 50
#define EXTRUDER_AUTO_FAN_SPEED 255 // 255 == full speed #define EXTRUDER_AUTO_FAN_SPEED 255 // 255 == full speed