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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 = 3974 K, 4.7 kOhm pull-up, Honeywell 135-104LAF-J01
  24. // R0 = 100000 Ohm
  25. // T0 = 25 °C
  26. // Beta = 3974
  27. // R1 = 0 Ohm
  28. // R2 = 4700 Ohm
  29. constexpr temp_entry_t temptable_71[] PROGMEM = {
  30. { OV( 35), 300 },
  31. { OV( 51), 269 },
  32. { OV( 59), 258 },
  33. { OV( 64), 252 },
  34. { OV( 71), 244 },
  35. { OV( 81), 235 },
  36. { OV( 87), 230 },
  37. { OV( 92), 226 },
  38. { OV( 102), 219 },
  39. { OV( 110), 214 },
  40. { OV( 115), 211 },
  41. { OV( 126), 205 },
  42. { OV( 128), 204 },
  43. { OV( 130), 203 },
  44. { OV( 132), 202 },
  45. { OV( 134), 201 },
  46. { OV( 136), 200 },
  47. { OV( 147), 195 },
  48. { OV( 154), 192 },
  49. { OV( 159), 190 },
  50. { OV( 164), 188 },
  51. { OV( 172), 185 },
  52. { OV( 175), 184 },
  53. { OV( 178), 183 },
  54. { OV( 181), 182 },
  55. { OV( 184), 181 },
  56. { OV( 187), 180 },
  57. { OV( 190), 179 },
  58. { OV( 193), 178 },
  59. { OV( 196), 177 },
  60. { OV( 199), 176 },
  61. { OV( 202), 175 },
  62. { OV( 205), 174 },
  63. { OV( 208), 173 },
  64. { OV( 215), 171 },
  65. { OV( 237), 165 },
  66. { OV( 256), 160 },
  67. { OV( 300), 150 },
  68. { OV( 351), 140 },
  69. { OV( 470), 120 },
  70. { OV( 504), 115 },
  71. { OV( 538), 110 },
  72. { OV( 745), 80 },
  73. { OV( 770), 76 },
  74. { OV( 806), 70 },
  75. { OV( 829), 66 },
  76. { OV( 860), 60 },
  77. { OV( 879), 56 },
  78. { OV( 888), 54 },
  79. { OV( 905), 50 },
  80. { OV( 924), 45 },
  81. { OV( 940), 40 },
  82. { OV( 955), 35 },
  83. { OV( 972), 28 },
  84. { OV( 974), 27 },
  85. { OV( 976), 26 },
  86. { OV( 978), 25 },
  87. { OV( 980), 24 },
  88. { OV( 987), 20 },
  89. { OV( 995), 15 },
  90. { OV(1001), 10 },
  91. { OV(1006), 5 },
  92. { OV(1010), 0 }
  93. };