diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-09-30 19:04:24 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-09-30 21:36:51 -0400 |
commit | 9faa0fbd25b948fc5fd7144a68ad03803d61784e (patch) | |
tree | a3e87c8a861420eb547eea4c185c8c084c322e8b /config | |
parent | 3167e8ddbe338a58311fd94f044e8499ca9c9787 (diff) | |
download | kutter-9faa0fbd25b948fc5fd7144a68ad03803d61784e.tar.gz kutter-9faa0fbd25b948fc5fd7144a68ad03803d61784e.tar.xz kutter-9faa0fbd25b948fc5fd7144a68ad03803d61784e.zip |
extruder: Support a minimum extrude temperature
Allow the config file to specify the minimum temperature for the
extruder and check for that temperature prior to moving the extruder
motor.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/example.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config/example.cfg b/config/example.cfg index 860cbb62..ec383d75 100644 --- a/config/example.cfg +++ b/config/example.cfg @@ -135,6 +135,9 @@ pid_deriv_time: 2.0 # will be smoothed to reduce the impact of measurement noise pid_integral_max: 255 # The maximum "windup" the integral term may accumulate +min_extrude_temp: 170 +# The minimum temperature (in Celsius) at which extruder move +# commands may be issued min_temp: 0 # Minimum temperature in Celsius (mcu will shutdown if not met) max_temp: 210 |