My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

thermistortable_2.h 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. //
  23. // 200k ATC Semitec 204GT-2
  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. //
  27. const short temptable_2[][2] PROGMEM = {
  28. { 1 * OVERSAMPLENR, 848 },
  29. { 30 * OVERSAMPLENR, 300 }, // top rating 300C
  30. { 34 * OVERSAMPLENR, 290 },
  31. { 39 * OVERSAMPLENR, 280 },
  32. { 46 * OVERSAMPLENR, 270 },
  33. { 53 * OVERSAMPLENR, 260 },
  34. { 63 * OVERSAMPLENR, 250 },
  35. { 74 * OVERSAMPLENR, 240 },
  36. { 87 * OVERSAMPLENR, 230 },
  37. { 104 * OVERSAMPLENR, 220 },
  38. { 124 * OVERSAMPLENR, 210 },
  39. { 148 * OVERSAMPLENR, 200 },
  40. { 176 * OVERSAMPLENR, 190 },
  41. { 211 * OVERSAMPLENR, 180 },
  42. { 252 * OVERSAMPLENR, 170 },
  43. { 301 * OVERSAMPLENR, 160 },
  44. { 357 * OVERSAMPLENR, 150 },
  45. { 420 * OVERSAMPLENR, 140 },
  46. { 489 * OVERSAMPLENR, 130 },
  47. { 562 * OVERSAMPLENR, 120 },
  48. { 636 * OVERSAMPLENR, 110 },
  49. { 708 * OVERSAMPLENR, 100 },
  50. { 775 * OVERSAMPLENR, 90 },
  51. { 835 * OVERSAMPLENR, 80 },
  52. { 884 * OVERSAMPLENR, 70 },
  53. { 924 * OVERSAMPLENR, 60 },
  54. { 955 * OVERSAMPLENR, 50 },
  55. { 977 * OVERSAMPLENR, 40 },
  56. { 993 * OVERSAMPLENR, 30 },
  57. { 1004 * OVERSAMPLENR, 20 },
  58. { 1012 * OVERSAMPLENR, 10 },
  59. { 1016 * OVERSAMPLENR, 0 }
  60. };