Browse Source

K8200: Example Configuration_adv.h back in sync

Example Configuration_adv.h for K8200 back in sync
* Configuration_adv.h: rebased and added missing changes for 4th
extruder
CONSULitAS 10 years ago
parent
commit
c421ffd520
1 changed files with 15 additions and 3 deletions
  1. 15
    3
      Marlin/example_configurations/K8200/Configuration_adv.h

+ 15
- 3
Marlin/example_configurations/K8200/Configuration_adv.h View File

75
 // extruder temperature is above/below EXTRUDER_AUTO_FAN_TEMPERATURE.
75
 // extruder temperature is above/below EXTRUDER_AUTO_FAN_TEMPERATURE.
76
 // Multiple extruders can be assigned to the same pin in which case
76
 // Multiple extruders can be assigned to the same pin in which case
77
 // the fan will turn on when any selected extruder is above the threshold.
77
 // the fan will turn on when any selected extruder is above the threshold.
78
-#define EXTRUDER_0_AUTO_FAN_PIN   -1
79
-#define EXTRUDER_1_AUTO_FAN_PIN   -1
80
-#define EXTRUDER_2_AUTO_FAN_PIN   -1
78
+#define EXTRUDER_0_AUTO_FAN_PIN -1
79
+#define EXTRUDER_1_AUTO_FAN_PIN -1
80
+#define EXTRUDER_2_AUTO_FAN_PIN -1
81
+#define EXTRUDER_3_AUTO_FAN_PIN -1
81
 #define EXTRUDER_AUTO_FAN_TEMPERATURE 50
82
 #define EXTRUDER_AUTO_FAN_TEMPERATURE 50
82
 #define EXTRUDER_AUTO_FAN_SPEED   255  // == full speed
83
 #define EXTRUDER_AUTO_FAN_SPEED   255  // == full speed
83
 
84
 
483
   #define THERMISTORHEATER_2 TEMP_SENSOR_2
484
   #define THERMISTORHEATER_2 TEMP_SENSOR_2
484
   #define HEATER_2_USES_THERMISTOR
485
   #define HEATER_2_USES_THERMISTOR
485
 #endif
486
 #endif
487
+#if TEMP_SENSOR_3 > 0
488
+  #define THERMISTORHEATER_3 TEMP_SENSOR_3
489
+  #define HEATER_3_USES_THERMISTOR
490
+#endif
486
 #if TEMP_SENSOR_BED > 0
491
 #if TEMP_SENSOR_BED > 0
487
   #define THERMISTORBED TEMP_SENSOR_BED
492
   #define THERMISTORBED TEMP_SENSOR_BED
488
   #define BED_USES_THERMISTOR
493
   #define BED_USES_THERMISTOR
496
 #if TEMP_SENSOR_2 == -1
501
 #if TEMP_SENSOR_2 == -1
497
   #define HEATER_2_USES_AD595
502
   #define HEATER_2_USES_AD595
498
 #endif
503
 #endif
504
+#if TEMP_SENSOR_3 == -1
505
+  #define HEATER_3_USES_AD595
506
+#endif
499
 #if TEMP_SENSOR_BED == -1
507
 #if TEMP_SENSOR_BED == -1
500
   #define BED_USES_AD595
508
   #define BED_USES_AD595
501
 #endif
509
 #endif
514
   #undef HEATER_2_MINTEMP
522
   #undef HEATER_2_MINTEMP
515
   #undef HEATER_2_MAXTEMP
523
   #undef HEATER_2_MAXTEMP
516
 #endif
524
 #endif
525
+#if TEMP_SENSOR_3 == 0
526
+  #undef HEATER_3_MINTEMP
527
+  #undef HEATER_3_MAXTEMP
528
+#endif
517
 #if TEMP_SENSOR_BED == 0
529
 #if TEMP_SENSOR_BED == 0
518
   #undef BED_MINTEMP
530
   #undef BED_MINTEMP
519
   #undef BED_MAXTEMP
531
   #undef BED_MAXTEMP

Loading…
Cancel
Save