diff options
author | johnnyr <thehdesk@gmail.com> | 2010-08-11 20:53:56 -0700 |
---|---|---|
committer | johnnyr <thehdesk@gmail.com> | 2010-08-11 20:53:56 -0700 |
commit | ea3fda25c5ab1efe3d10ccd00d193ddc33651625 (patch) | |
tree | c12ca849d16d46125bbfefb1ceae7bc995d04d09 /Tonokip_Firmware | |
parent | 94d38295100819f552ac89eff4012d1670d2273a (diff) |
Diffstat (limited to 'Tonokip_Firmware')
-rw-r--r-- | Tonokip_Firmware/ThermistorTable.h | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/Tonokip_Firmware/ThermistorTable.h b/Tonokip_Firmware/ThermistorTable.h index 844b8de..0e3a95a 100644 --- a/Tonokip_Firmware/ThermistorTable.h +++ b/Tonokip_Firmware/ThermistorTable.h @@ -13,31 +13,33 @@ // r2: 4700 // beta: 4066 // max adc: 1023 +// UltiMachine.com Thermistor #define NUMTEMPS 20 + short temptable[NUMTEMPS][2] = { - {1, 841}, - {54, 255}, - {107, 209}, - {160, 184}, - {213, 166}, - {266, 153}, - {319, 142}, - {372, 132}, - {425, 124}, - {478, 116}, - {531, 108}, - {584, 101}, + + {1, 821}, + {54, 252}, + {107, 207}, + {160, 182}, + {213, 165}, + {266, 152}, + {319, 141}, + {372, 131}, + {425, 123}, + {478, 115}, + {531, 107}, + {584, 100}, {637, 93}, {690, 86}, {743, 78}, {796, 70}, - {849, 61}, - {902, 50}, + {849, 60}, + {902, 49}, {955, 34}, {1008, 3} -}; + }; #endif -
|