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.

thermistor_2000.h 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2021 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. // R25 = 100 KOhm, beta25 = 4550 K, 4.7 kOhm pull-up, TDK NTCG104LH104KT1 https://product.tdk.com/en/search/sensor/ntc/chip-ntc-thermistor/info?part_no=NTCG104LH104KT1
  24. constexpr temp_entry_t temptable_2000[] PROGMEM = {
  25. { OV(313), 125 },
  26. { OV(347), 120 },
  27. { OV(383), 115 },
  28. { OV(422), 110 },
  29. { OV(463), 105 },
  30. { OV(506), 100 },
  31. { OV(549), 95 },
  32. { OV(594), 90 },
  33. { OV(638), 85 },
  34. { OV(681), 80 },
  35. { OV(722), 75 },
  36. { OV(762), 70 },
  37. { OV(799), 65 },
  38. { OV(833), 60 },
  39. { OV(863), 55 },
  40. { OV(890), 50 },
  41. { OV(914), 45 },
  42. { OV(934), 40 },
  43. { OV(951), 35 },
  44. { OV(966), 30 },
  45. { OV(978), 25 },
  46. { OV(988), 20 },
  47. { OV(996), 15 },
  48. { OV(1002), 10 },
  49. { OV(1007), 5 },
  50. { OV(1012), 0 },
  51. { OV(1015), -5 },
  52. { OV(1017), -10 },
  53. { OV(1019), -15 },
  54. { OV(1020), -20 },
  55. { OV(1021), -25 },
  56. { OV(1022), -30 },
  57. { OV(1023), -35 },
  58. { OV(1023), -40 }
  59. };