diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-03-11 00:22:44 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-03-11 00:49:11 -0500 |
commit | 5208fc38edc7e62958bfc51de7918351b888b408 (patch) | |
tree | 78837f8929048a871af75f23d1837afac535175b /config/example-extras.cfg | |
parent | b549c3927e292a33188b46d22fc67ab48b6b790a (diff) | |
download | kutter-5208fc38edc7e62958bfc51de7918351b888b408.tar.gz kutter-5208fc38edc7e62958bfc51de7918351b888b408.tar.xz kutter-5208fc38edc7e62958bfc51de7918351b888b408.zip |
verify_heater: Add initial support for verifying heaters and sensors
Add runtime checks to heaters and temperature sensors to check for
possible hardware faults.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r-- | config/example-extras.cfg | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 33b67178..fa48e780 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -122,6 +122,28 @@ # See the example.cfg for the definition of the above parameters. +# Heater and temperature sensor verification. Heater verification is +# automatically enabled for each heater that is configured on the +# printer. Use verify_heater sections to change the default settings. +#[verify_heater heater_config_name] +#heating_gain: 2 +# The minimum temperature (in Celsius) that the heater must increase +# by when approaching a new target temperature. The default is 2. +#check_gain_time: +# The amount of time (in seconds) that the heating_gain must be met +# in before an error is raised. The default is 20 seconds for +# extruders and 60 seconds for heater_bed. +#hysteresis: 4 +# The difference between the target temperature and the current +# temperature for the heater to be considered within range of the +# target temperature. The default is 4. +#check_time: 10 +# The amount of time (in seconds) a heater that has reached the +# target temperature (as defined by the hysteresis field) may fall +# outside the target temperature range before an error is +# raised. The default is 10. + + # Multi-stepper axes. On a cartesian style printer, the stepper # controlling a given axis may have additional config blocks defining # steppers that should be stepped in concert with the primary |