aboutsummaryrefslogtreecommitdiffstats
path: root/config/example-extras.cfg
diff options
context:
space:
mode:
authorMichael Barbour <barbour.michael.0@gmail.com>2018-05-03 17:39:50 -0400
committerKevinOConnor <kevin@koconnor.net>2018-05-10 19:32:23 -0400
commitbf3c41cd0685e57e73b29bde9f619e94bd44a051 (patch)
tree58f18d7973511f18dcba6aa24d0fd94a5922d64f /config/example-extras.cfg
parent6ad344c8a66b20e0842dabaad44b2ff3c7adf619 (diff)
downloadkutter-bf3c41cd0685e57e73b29bde9f619e94bd44a051.tar.gz
kutter-bf3c41cd0685e57e73b29bde9f619e94bd44a051.tar.xz
kutter-bf3c41cd0685e57e73b29bde9f619e94bd44a051.zip
temperature_fan: Add support for temperature-triggered fan.
Signed-off-by: Michael Barbour <barbour.michael.0@gmail.com>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r--config/example-extras.cfg31
1 files changed, 31 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg
index 65d8115b..08fd6c4f 100644
--- a/config/example-extras.cfg
+++ b/config/example-extras.cfg
@@ -211,6 +211,37 @@
# is 1.0
+# Temperature-triggered cooling fans (one may define any number of
+# sections with a "temperature_fan" prefix). A "temperature fan" is
+# a fan that will be enabled whenever its associated sensor is above
+# a set temperature. In the event of an MCU software error the
+# temperature_fan will be set to its max_power.
+#[temperature_fan my_temp_fan]
+# See the "fan" section for fan configuration parameters.
+#pin: ar4
+# See the "heater" section for details about the sensor_type and
+# sensor_pin parameters.
+#sensor_type: EPCOS 100K B57560G104F
+#sensor_pin: analog13
+# The remaining variables are specific to temperature_fan.
+#min_temp: 0
+#max_temp: 100
+# The maximum range of valid temperatures (in Celsius) that the
+# sensor 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. Set this range just wide enough so
+# that reasonable temperatures do not result in an error. These
+# parameters must be provided.
+#temp: 40.0
+# A temperature (in Celsius) that the sensor must exceed before the
+# fan is enabled. The default is 40 Celsius.
+#fan_speed: 1.0
+# The fan speed (expressed as a value from 0.0 to 1.0) that the fan
+# will be set to when the sensor temperature exceeds the set value.
+# The default is 1.0.
+
+
# Additional micro-controllers (one may define any number of sections
# with an "mcu" prefix). Additional micro-controllers introduce
# additional pins that may be configured as heaters, steppers, fans,