diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-03-12 14:37:02 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-03-12 14:37:02 -0400 |
commit | 3a757487625bcf2bac4d934f24f0330f75f46126 (patch) | |
tree | 84d19d29330790c5f45f3db6a719272b53a8a777 /config | |
parent | e336c24665ff047253187bfcf21ae5a7dcbf991e (diff) | |
download | kutter-3a757487625bcf2bac4d934f24f0330f75f46126.tar.gz kutter-3a757487625bcf2bac4d934f24f0330f75f46126.tar.xz kutter-3a757487625bcf2bac4d934f24f0330f75f46126.zip |
config: Reword the min_temp/max_temp description in example.cfg
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/example.cfg | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/config/example.cfg b/config/example.cfg index 86184076..ae8c3b9a 100644 --- a/config/example.cfg +++ b/config/example.cfg @@ -186,11 +186,15 @@ pid_Kd: 114 # The minimum temperature (in Celsius) at which extruder move # commands may be issued. The default is 170 Celsius. min_temp: 0 -# Minimum temperature in Celsius (mcu will shutdown if not -# met). This parameter must be provided. max_temp: 210 -# Maximum temperature (mcu will shutdown if temperature is above -# this value). This parameter must be provided. +# The maximum range of valid temperatures (in Celsius) that the +# heater must remain within. This controls a safety feature +# implemented in the micro-controller code - should the measured +# temperature ever fall outside this range then the micro-controller +# will go into a shutdown state. This check can help detect some +# heater and sensor hardware failures. Set this range just wide +# enough so that reasonable temperatures do not result in an +# error. These parameters must be provided. # The heater_bed section describes a heated bed (if present - omit # section if not present). |