diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-04-09 15:44:34 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-04-09 15:44:34 -0400 |
commit | 6466af63131cda874fa0f2d6fa86363ca224d79d (patch) | |
tree | 38ec518ee2efa17a981c8f0559a5cf40928c9dac /config/example-extras.cfg | |
parent | c463893a5ea1353dc3aa94169fa2398ecdd927df (diff) | |
download | kutter-6466af63131cda874fa0f2d6fa86363ca224d79d.tar.gz kutter-6466af63131cda874fa0f2d6fa86363ca224d79d.tar.xz kutter-6466af63131cda874fa0f2d6fa86363ca224d79d.zip |
adc_temperature: Support defining custom sensors in the config file
Allow the user to define a custom sensor with their own set of
temperature/voltage measurements.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r-- | config/example-extras.cfg | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index e67f7165..c1370eda 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -395,7 +395,7 @@ # Custom thermistors (one may define any number of sections with a -# "thermistor" prefix). A custom thermistor may be used in the +# "thermistor" prefix). A custom thermistor may be used in the # sensor_type field of a heater config section. (For example, if one # defines a "[thermistor my_thermistor]" section then one may use a # "sensor_type: my_thermistor" when defining a heater.) Be sure to @@ -410,7 +410,7 @@ #resistance3: # Three resistance measurements (in Ohms) at the given temperatures # (in Celsius). The three measurements will be used to calculate the -# Steinhart-Hart coefficients for the thermistor. These parameters +# Steinhart-Hart coefficients for the thermistor. These parameters # must be provided when using Steinhart-Hart to define the # thermistor. #beta: @@ -419,6 +419,28 @@ # provided when using "beta" to define the thermistor. +# Custom ADC temperature sensors (one may define any number of +# sections with an "adc_temperature" prefix). This allows one to +# define a custom temperature sensor that measures a voltage on an +# Analog to Digital Converter (ADC) pin and uses linear interpolation +# between a set of configured temperature/voltage measurements to +# determine the temperature. The resulting sensor can be used as a +# sensor_type in a heater section. (For example, if one defines a +# "[adc_temperature my_sensor]" section then one may use a +# "sensor_type: my_sensor" when defining a heater.) Be sure to place +# the sensor section in the config file above its first use in a +# heater section. +#[adc_temperature my_sensor] +#temperature1: +#voltage1: +#temperature2: +#voltage2: +#... +# A set of temperatures (in Celsius) and voltages (in Ohms) to use +# as reference when converting a temperature. At least two +# measurements must be provided. + + # Replicape support - see the generic-replicape.cfg file for further # details. #[replicape] |