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_331.h 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. #define OVM(V) OV((V)*(0.327/0.5))
  24. // R25 = 100 kOhm, beta25 = 4092 K, 4.7 kOhm pull-up, bed thermistor
  25. constexpr temp_entry_t temptable_331[] PROGMEM = {
  26. { OVM( 23), 300 },
  27. { OVM( 25), 295 },
  28. { OVM( 27), 290 },
  29. { OVM( 28), 285 },
  30. { OVM( 31), 280 },
  31. { OVM( 33), 275 },
  32. { OVM( 35), 270 },
  33. { OVM( 38), 265 },
  34. { OVM( 41), 260 },
  35. { OVM( 44), 255 },
  36. { OVM( 48), 250 },
  37. { OVM( 52), 245 },
  38. { OVM( 56), 240 },
  39. { OVM( 61), 235 },
  40. { OVM( 66), 230 },
  41. { OVM( 71), 225 },
  42. { OVM( 78), 220 },
  43. { OVM( 84), 215 },
  44. { OVM( 92), 210 },
  45. { OVM( 100), 205 },
  46. { OVM( 109), 200 },
  47. { OVM( 120), 195 },
  48. { OVM( 131), 190 },
  49. { OVM( 143), 185 },
  50. { OVM( 156), 180 },
  51. { OVM( 171), 175 },
  52. { OVM( 187), 170 },
  53. { OVM( 205), 165 },
  54. { OVM( 224), 160 },
  55. { OVM( 245), 155 },
  56. { OVM( 268), 150 },
  57. { OVM( 293), 145 },
  58. { OVM( 320), 140 },
  59. { OVM( 348), 135 },
  60. { OVM( 379), 130 },
  61. { OVM( 411), 125 },
  62. { OVM( 445), 120 },
  63. { OVM( 480), 115 },
  64. { OVM( 516), 110 },
  65. { OVM( 553), 105 },
  66. { OVM( 591), 100 },
  67. { OVM( 628), 95 },
  68. { OVM( 665), 90 },
  69. { OVM( 702), 85 },
  70. { OVM( 737), 80 },
  71. { OVM( 770), 75 },
  72. { OVM( 801), 70 },
  73. { OVM( 830), 65 },
  74. { OVM( 857), 60 },
  75. { OVM( 881), 55 },
  76. { OVM( 903), 50 },
  77. { OVM( 922), 45 },
  78. { OVM( 939), 40 },
  79. { OVM( 954), 35 },
  80. { OVM( 966), 30 },
  81. { OVM( 977), 25 },
  82. { OVM( 985), 20 },
  83. { OVM( 993), 15 },
  84. { OVM( 999), 10 },
  85. { OVM(1004), 5 },
  86. { OVM(1008), 0 },
  87. { OVM(1012), -5 },
  88. { OVM(1016), -10 },
  89. { OVM(1020), -15 }
  90. };