My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

thermistortable_55.h 2.3KB

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 ATC Semitec 104GT-2 (Used on ParCan) (WITH 1kohm RESISTOR FOR PULLUP, R9 ON SANGUINOLOLU! NOT FOR 4.7kohm PULLUP! THIS IS NOT NORMAL!)
  23. // Verified by linagee. Source: http://shop.arcol.hu/static/datasheets/thermistors.pdf
  24. // Calculated using 1kohm pullup, voltage divider math, and manufacturer provided temp/resistance
  25. // Advantage: More resolution and better linearity from 150C to 200C
  26. const short temptable_55[][2] PROGMEM = {
  27. { 1 * OVERSAMPLENR, 500 },
  28. { 76 * OVERSAMPLENR, 300 },
  29. { 87 * OVERSAMPLENR, 290 },
  30. { 100 * OVERSAMPLENR, 280 },
  31. { 114 * OVERSAMPLENR, 270 },
  32. { 131 * OVERSAMPLENR, 260 },
  33. { 152 * OVERSAMPLENR, 250 },
  34. { 175 * OVERSAMPLENR, 240 },
  35. { 202 * OVERSAMPLENR, 230 },
  36. { 234 * OVERSAMPLENR, 220 },
  37. { 271 * OVERSAMPLENR, 210 },
  38. { 312 * OVERSAMPLENR, 200 },
  39. { 359 * OVERSAMPLENR, 190 },
  40. { 411 * OVERSAMPLENR, 180 },
  41. { 467 * OVERSAMPLENR, 170 },
  42. { 527 * OVERSAMPLENR, 160 },
  43. { 590 * OVERSAMPLENR, 150 },
  44. { 652 * OVERSAMPLENR, 140 },
  45. { 713 * OVERSAMPLENR, 130 },
  46. { 770 * OVERSAMPLENR, 120 },
  47. { 822 * OVERSAMPLENR, 110 },
  48. { 867 * OVERSAMPLENR, 100 },
  49. { 905 * OVERSAMPLENR, 90 },
  50. { 936 * OVERSAMPLENR, 80 },
  51. { 961 * OVERSAMPLENR, 70 },
  52. { 979 * OVERSAMPLENR, 60 },
  53. { 993 * OVERSAMPLENR, 50 },
  54. { 1003 * OVERSAMPLENR, 40 },
  55. { 1010 * OVERSAMPLENR, 30 },
  56. { 1015 * OVERSAMPLENR, 20 },
  57. { 1018 * OVERSAMPLENR, 10 },
  58. { 1020 * OVERSAMPLENR, 0 }
  59. };