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_10.h 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 RS thermistor 198-961 (4.7k pullup)
  23. const short temptable_10[][2] PROGMEM = {
  24. { 1 * OVERSAMPLENR, 929 },
  25. { 36 * OVERSAMPLENR, 299 },
  26. { 71 * OVERSAMPLENR, 246 },
  27. { 106 * OVERSAMPLENR, 217 },
  28. { 141 * OVERSAMPLENR, 198 },
  29. { 176 * OVERSAMPLENR, 184 },
  30. { 211 * OVERSAMPLENR, 173 },
  31. { 246 * OVERSAMPLENR, 163 },
  32. { 281 * OVERSAMPLENR, 154 },
  33. { 316 * OVERSAMPLENR, 147 },
  34. { 351 * OVERSAMPLENR, 140 },
  35. { 386 * OVERSAMPLENR, 134 },
  36. { 421 * OVERSAMPLENR, 128 },
  37. { 456 * OVERSAMPLENR, 122 },
  38. { 491 * OVERSAMPLENR, 117 },
  39. { 526 * OVERSAMPLENR, 112 },
  40. { 561 * OVERSAMPLENR, 107 },
  41. { 596 * OVERSAMPLENR, 102 },
  42. { 631 * OVERSAMPLENR, 97 },
  43. { 666 * OVERSAMPLENR, 91 },
  44. { 701 * OVERSAMPLENR, 86 },
  45. { 736 * OVERSAMPLENR, 81 },
  46. { 771 * OVERSAMPLENR, 76 },
  47. { 806 * OVERSAMPLENR, 70 },
  48. { 841 * OVERSAMPLENR, 63 },
  49. { 876 * OVERSAMPLENR, 56 },
  50. { 911 * OVERSAMPLENR, 48 },
  51. { 946 * OVERSAMPLENR, 38 },
  52. { 981 * OVERSAMPLENR, 23 },
  53. { 1005 * OVERSAMPLENR, 5 },
  54. { 1016 * OVERSAMPLENR, 0 }
  55. };