My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

thermistortable_6.h 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 Epcos thermistor
  23. const short temptable_6[][2] PROGMEM = {
  24. { 1 * OVERSAMPLENR, 350 },
  25. { 28 * OVERSAMPLENR, 250 }, // top rating 250C
  26. { 31 * OVERSAMPLENR, 245 },
  27. { 35 * OVERSAMPLENR, 240 },
  28. { 39 * OVERSAMPLENR, 235 },
  29. { 42 * OVERSAMPLENR, 230 },
  30. { 44 * OVERSAMPLENR, 225 },
  31. { 49 * OVERSAMPLENR, 220 },
  32. { 53 * OVERSAMPLENR, 215 },
  33. { 62 * OVERSAMPLENR, 210 },
  34. { 71 * OVERSAMPLENR, 205 }, // fitted graphically
  35. { 78 * OVERSAMPLENR, 200 }, // fitted graphically
  36. { 94 * OVERSAMPLENR, 190 },
  37. { 102 * OVERSAMPLENR, 185 },
  38. { 116 * OVERSAMPLENR, 170 },
  39. { 143 * OVERSAMPLENR, 160 },
  40. { 183 * OVERSAMPLENR, 150 },
  41. { 223 * OVERSAMPLENR, 140 },
  42. { 270 * OVERSAMPLENR, 130 },
  43. { 318 * OVERSAMPLENR, 120 },
  44. { 383 * OVERSAMPLENR, 110 },
  45. { 413 * OVERSAMPLENR, 105 },
  46. { 439 * OVERSAMPLENR, 100 },
  47. { 484 * OVERSAMPLENR, 95 },
  48. { 513 * OVERSAMPLENR, 90 },
  49. { 607 * OVERSAMPLENR, 80 },
  50. { 664 * OVERSAMPLENR, 70 },
  51. { 781 * OVERSAMPLENR, 60 },
  52. { 810 * OVERSAMPLENR, 55 },
  53. { 849 * OVERSAMPLENR, 50 },
  54. { 914 * OVERSAMPLENR, 45 },
  55. { 914 * OVERSAMPLENR, 40 },
  56. { 935 * OVERSAMPLENR, 35 },
  57. { 954 * OVERSAMPLENR, 30 },
  58. { 970 * OVERSAMPLENR, 25 },
  59. { 978 * OVERSAMPLENR, 22 },
  60. { 1008 * OVERSAMPLENR, 3 },
  61. { 1023 * OVERSAMPLENR, 0 } // to allow internal 0 degrees C
  62. };