|
@@ -94,6 +94,11 @@
|
94
|
94
|
// before setting a PWM value. (Does not work with software PWM for fan on Sanguinololu)
|
95
|
95
|
//#define FAN_KICKSTART_TIME 100
|
96
|
96
|
|
|
97
|
+// This defines the minimal speed for the main fan, run in PWM mode
|
|
98
|
+// to enable uncomment and set minimal PWM speed for reliable running (1-255)
|
|
99
|
+// if fan speed is [1 - (FAN_MIN_PWM-1)] it is set to FAN_MIN_PWM
|
|
100
|
+//#define FAN_MIN_PWM 50
|
|
101
|
+
|
97
|
102
|
// @section extruder
|
98
|
103
|
|
99
|
104
|
// Extruder cooling fans
|
|
@@ -290,7 +295,9 @@
|
290
|
295
|
// You can get round this by connecting a push button or single throw switch to the pin defined as SDCARDCARDDETECT
|
291
|
296
|
// in the pins.h file. When using a push button pulling the pin to ground this will need inverted. This setting should
|
292
|
297
|
// be commented out otherwise
|
293
|
|
- #define SDCARDDETECTINVERTED
|
|
298
|
+ #ifndef ELB_FULL_GRAPHIC_CONTROLLER
|
|
299
|
+ #define SDCARDDETECTINVERTED
|
|
300
|
+ #endif
|
294
|
301
|
|
295
|
302
|
#define SD_FINISHED_STEPPERRELEASE true //if sd support and the file is finished: disable steppers?
|
296
|
303
|
#define SD_FINISHED_RELEASECOMMAND "M84 X Y Z E" // You might want to keep the z enabled so your bed stays in place.
|
|
@@ -448,6 +455,9 @@ const unsigned int dropsegments=5; //everything with less than this number of st
|
448
|
455
|
#define FILAMENTCHANGE_ZADD 10
|
449
|
456
|
#define FILAMENTCHANGE_FIRSTRETRACT -2
|
450
|
457
|
#define FILAMENTCHANGE_FINALRETRACT -100
|
|
458
|
+ #define AUTO_FILAMENT_CHANGE //This extrude filament until you press the button on LCD
|
|
459
|
+ #define AUTO_FILAMENT_CHANGE_LENGTH 0.04 //Extrusion length on automatic extrusion loop
|
|
460
|
+ #define AUTO_FILAMENT_CHANGE_FEEDRATE 300 //Extrusion feedrate (mm/min) on automatic extrusion loop
|
451
|
461
|
#endif
|
452
|
462
|
#endif
|
453
|
463
|
|