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_30.h 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 = 3950 K, 4.7 kOhm pull-up
  24. // Resistance 100k Ohms at 25deg. C
  25. // Resistance Tolerance + / -1%
  26. // B Value 3950K at 25/50 deg. C
  27. // B Value Tolerance + / - 1%
  28. // Kis3d Silicone Heater 24V 200W/300W with 6mm Precision cast plate (EN AW 5083)
  29. // Temperature setting time 10 min to determine the 12Bit ADC value on the surface. (le3tspeak)
  30. constexpr temp_entry_t temptable_30[] PROGMEM = {
  31. { OV( 1), 938 },
  32. { OV( 298), 125 }, // 1193 - 125°
  33. { OV( 321), 121 }, // 1285 - 121°
  34. { OV( 348), 117 }, // 1392 - 117°
  35. { OV( 387), 113 }, // 1550 - 113°
  36. { OV( 411), 110 }, // 1644 - 110°
  37. { OV( 445), 106 }, // 1780 - 106°
  38. { OV( 480), 101 }, // 1920 - 101°
  39. { OV( 516), 97 }, // 2064 - 97°
  40. { OV( 553), 92 }, // 2212 - 92°
  41. { OV( 591), 88 }, // 2364 - 88°
  42. { OV( 628), 84 }, // 2512 - 84°
  43. { OV( 665), 79 }, // 2660 - 79°
  44. { OV( 702), 75 }, // 2808 - 75°
  45. { OV( 736), 71 }, // 2945 - 71°
  46. { OV( 770), 67 }, // 3080 - 67°
  47. { OV( 801), 63 }, // 3204 - 63°
  48. { OV( 830), 59 }, // 3320 - 59°
  49. { OV( 857), 55 }, // 3428 - 55°
  50. { OV( 881), 51 }, // 3524 - 51°
  51. { OV( 902), 47 }, // 3611 - 47°
  52. { OV( 922), 42 }, // 3688 - 42°
  53. { OV( 938), 38 }, // 3754 - 38°
  54. { OV( 952), 34 }, // 3811 - 34°
  55. { OV( 964), 29 }, // 3857 - 29°
  56. { OV( 975), 25 }, // 3900 - 25°
  57. { OV( 980), 23 }, // 3920 - 23°
  58. { OV( 991), 17 }, // 3964 - 17°
  59. { OV(1001), 9 }, // Calculated
  60. { OV(1004), 5 }, // Calculated
  61. { OV(1008), 0 }, // Calculated
  62. { OV(1012), -5 }, // Calculated
  63. { OV(1016), -10 }, // Calculated
  64. { OV(1020), -15 } // Calculated
  65. };