My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

thermistortable_5.h 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. // 100k ParCan thermistor (104GT-2)
  23. // ATC Semitec 104GT-2 (Used in ParCan)
  24. // Verified by linagee. Source: http://shop.arcol.hu/static/datasheets/thermistors.pdf
  25. // Calculated using 4.7kohm pullup, voltage divider math, and manufacturer provided temp/resistance
  26. const short temptable_5[][2] PROGMEM = {
  27. { 1 * OVERSAMPLENR, 713 },
  28. { 17 * OVERSAMPLENR, 300 }, // top rating 300C
  29. { 20 * OVERSAMPLENR, 290 },
  30. { 23 * OVERSAMPLENR, 280 },
  31. { 27 * OVERSAMPLENR, 270 },
  32. { 31 * OVERSAMPLENR, 260 },
  33. { 37 * OVERSAMPLENR, 250 },
  34. { 43 * OVERSAMPLENR, 240 },
  35. { 51 * OVERSAMPLENR, 230 },
  36. { 61 * OVERSAMPLENR, 220 },
  37. { 73 * OVERSAMPLENR, 210 },
  38. { 87 * OVERSAMPLENR, 200 },
  39. { 106 * OVERSAMPLENR, 190 },
  40. { 128 * OVERSAMPLENR, 180 },
  41. { 155 * OVERSAMPLENR, 170 },
  42. { 189 * OVERSAMPLENR, 160 },
  43. { 230 * OVERSAMPLENR, 150 },
  44. { 278 * OVERSAMPLENR, 140 },
  45. { 336 * OVERSAMPLENR, 130 },
  46. { 402 * OVERSAMPLENR, 120 },
  47. { 476 * OVERSAMPLENR, 110 },
  48. { 554 * OVERSAMPLENR, 100 },
  49. { 635 * OVERSAMPLENR, 90 },
  50. { 713 * OVERSAMPLENR, 80 },
  51. { 784 * OVERSAMPLENR, 70 },
  52. { 846 * OVERSAMPLENR, 60 },
  53. { 897 * OVERSAMPLENR, 50 },
  54. { 937 * OVERSAMPLENR, 40 },
  55. { 966 * OVERSAMPLENR, 30 },
  56. { 986 * OVERSAMPLENR, 20 },
  57. { 1000 * OVERSAMPLENR, 10 },
  58. { 1010 * OVERSAMPLENR, 0 }
  59. };