aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2019-06-02 17:12:55 -0400
committerKevin O'Connor <kevin@koconnor.net>2019-06-02 17:12:55 -0400
commit89650a1e60a78f7315851c802ada1b4bf56eaad0 (patch)
tree83a4bc29964bd4effd63b8ac62f34825ae06e0f5
parent72100bc1f2c2825248f32ee512612a7ac803f4a6 (diff)
downloadkutter-89650a1e60a78f7315851c802ada1b4bf56eaad0.tar.gz
kutter-89650a1e60a78f7315851c802ada1b4bf56eaad0.tar.xz
kutter-89650a1e60a78f7315851c802ada1b4bf56eaad0.zip
adc_temperature: Minor comment update
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r--klippy/extras/adc_temperature.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/adc_temperature.py b/klippy/extras/adc_temperature.py
index 10825901..7f8b0f46 100644
--- a/klippy/extras/adc_temperature.py
+++ b/klippy/extras/adc_temperature.py
@@ -84,7 +84,7 @@ class LinearInterpolate:
# Linear voltage to temperature converter
######################################################################
-# Linear style conversion chips calibrated with two temp measurements
+# Linear style conversion chips calibrated from temperature measurements
class LinearVoltage:
def __init__(self, config, params):
adc_voltage = config.getfloat('adc_voltage', 5., above=0.)
@@ -124,7 +124,7 @@ class CustomLinearVoltage:
# Linear resistance to temperature converter
######################################################################
-# Linear resistance calibrated with two temp measurements
+# Linear resistance calibrated from temperature measurements
class LinearResistance:
def __init__(self, config, samples):
self.pullup = config.getfloat('pullup_resistor', 4700., above=0.)