Browse Source

thermistortables.h: Add comments that table 60 uses beta=3950.

David Forrest 10 years ago
parent
commit
b0093a1513
2 changed files with 9 additions and 1 deletions
  1. 1
    1
      Marlin/Configuration.h
  2. 8
    0
      Marlin/thermistortables.h

+ 1
- 1
Marlin/Configuration.h View File

@@ -116,7 +116,7 @@
116 116
 // 9 is 100k GE Sensing AL03006-58.2K-97-G1 (4.7k pullup)
117 117
 // 10 is 100k RS thermistor 198-961 (4.7k pullup)
118 118
 // 20 is the PT100 circuit found in the Ultimainboard V2.x
119
-// 60 is 100k Maker's Tool Works Kapton Bed Thermistor
119
+// 60 is 100k Maker's Tool Works Kapton Bed Thermistor beta=3950
120 120
 //
121 121
 //    1k ohm pullup tables - This is not normal, you would have to have changed out your 4.7k for 1k
122 122
 //                          (but gives greater accuracy and more stable PID)

+ 8
- 0
Marlin/thermistortables.h View File

@@ -781,6 +781,14 @@ const short temptable_55[][2] PROGMEM = {
781 781
 #endif
782 782
 
783 783
 #if (THERMISTORHEATER_0 == 60) || (THERMISTORHEATER_1 == 60) || (THERMISTORHEATER_2 == 60) || (THERMISTORBED == 60) // Maker's Tool Works Kapton Bed Thermister
784
+// ./createTemperatureLookup.py --r0=100000 --t0=25 --r1=0 --r2=4700 --beta=3950 
785
+// r0: 100000
786
+// t0: 25
787
+// r1: 0 (parallel with rTherm)
788
+// r2: 4700 (series with rTherm)
789
+// beta: 3950
790
+// min adc: 1 at 0.0048828125 V
791
+// max adc: 1023 at 4.9951171875 V
784 792
 const short temptable_60[][2] PROGMEM = {
785 793
    {51*OVERSAMPLENR, 272},
786 794
    {61*OVERSAMPLENR, 258},

Loading…
Cancel
Save