Browse Source

Update thermistor table script for current format

pull/1/head
Scott Lahteine 7 years ago
committed by GitHub
parent
commit
bacea22a26
  1. 5
      buildroot/share/scripts/createTemperatureLookupMarlin.py

5
buildroot/share/scripts/createTemperatureLookupMarlin.py

@ -134,10 +134,9 @@ def main(argv):
print "// Thermistor lookup table for Marlin"
print "// ./createTemperatureLookupMarlin.py --rp=%s --t1=%s:%s --t2=%s:%s --t3=%s:%s --num-temps=%s" % (rp, t1, r1, t2, r2, t3, r3, num_temps)
print "// Steinhart-Hart Coefficients: a=%.15g, b=%.15g, c=%.15g " % (t.c1, t.c2, t.c3)
print "// Theoretical limits of termistor: %.2f to %.2f degC" % (low_bound, up_bound)
print "// Theoretical limits of thermistor: %.2f to %.2f degC" % (low_bound, up_bound)
print
print "#define NUMTEMPS %s" % (len(temps))
print "const short temptable[NUMTEMPS][2] PROGMEM = {"
print "const short temptable[][2] PROGMEM = {"
for temp in temps:
adc = t.adc(temp)

Loading…
Cancel
Save