diff options
author | midopple <mdoppler@gmx.at> | 2012-04-22 18:33:19 +0200 |
---|---|---|
committer | midopple <mdoppler@gmx.at> | 2012-04-22 18:33:19 +0200 |
commit | 3a29ee97d134d5dbb101f6eac0e26746d0e59de1 (patch) | |
tree | 4de19c24f01c54c72e6e36995f2ee1b8646c9166 /Sprinter/Configuration.h | |
parent | 378426c766cc0a09d51b69dd1da1f2551a569833 (diff) |
Version 1.3.15T
- M206 - set additional homeing offset (Thank to se5a for this idea)
(First Version is without saving to EEPROM)
- Option for minimum FAN start speed --> #define MINIMUM_FAN_START_SPEED 50 (set it to zero to deaktivate)
Diffstat (limited to 'Sprinter/Configuration.h')
-rw-r--r-- | Sprinter/Configuration.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Sprinter/Configuration.h b/Sprinter/Configuration.h index cc10a09..e403de5 100644 --- a/Sprinter/Configuration.h +++ b/Sprinter/Configuration.h @@ -240,6 +240,17 @@ const int dropsegments=5; //everything with less than this number of steps will //every Digital output for it, main usage for Sanguinololu #define FAN_SOFT_PWM +//----------------------------------------------------------------------- +//// MINIMUM START SPEED FOR FAN +//----------------------------------------------------------------------- + +//Minimum start speed for FAN when the last speed was zero +//Set to 0 to deaktivate +//If value is set the fan will drive with this minimum speed for MINIMUM_FAN_START_TIME +#define MINIMUM_FAN_START_SPEED 0 + +//This is the time how long the minimum FAN speed is set +#define MINIMUM_FAN_START_TIME 6000 //6sec //----------------------------------------------------------------------- //// HEATERCONTROL AND PID PARAMETERS |