summaryrefslogtreecommitdiff
path: root/Sprinter/Configuration.h
diff options
context:
space:
mode:
authorAlessandro Ranellucci <aar@cpan.org>2011-07-26 18:45:13 +0200
committerAlessandro Ranellucci <aar@cpan.org>2011-07-26 18:45:13 +0200
commit0ca62c559670c0d9878b1ede081267d7142506a5 (patch)
treed36765b5937e623deeb3842c6495d64aebc63cdc /Sprinter/Configuration.h
parent3ff008c064bd112352138dae0b44db7d50458685 (diff)
New config option HEATER_CURRENT to limit current to the nozzle
Diffstat (limited to 'Sprinter/Configuration.h')
-rw-r--r--Sprinter/Configuration.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Sprinter/Configuration.h b/Sprinter/Configuration.h
index 3073393..d8bc8ea 100644
--- a/Sprinter/Configuration.h
+++ b/Sprinter/Configuration.h
@@ -113,13 +113,15 @@ char uuid[] = "00000000-0000-0000-0000-000000000000";
// Uncomment the following line to enable PID support. This is untested and could be disastrous. Be careful.
//#define PIDTEMP 1
#ifdef PIDTEMP
-#define PID_MAX 255 // limits current to nozzle
#define PID_INTEGRAL_DRIVE_MAX 220
#define PID_PGAIN 180 //100 is 1.0
#define PID_IGAIN 2 //100 is 1.0
#define PID_DGAIN 100 //100 is 1.0
#endif
+// Change this value (range 1-255) to limit the current to the nozzle
+#define HEATER_CURRENT 255
+
// How often should the heater check for new temp readings, in milliseconds
#define HEATER_CHECK_INTERVAL 500
#define BED_CHECK_INTERVAL 5000