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_67.h 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2019 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. #pragma once
  23. // R25 = 500 KOhm, beta25 = 3800 K, 4.7 kOhm pull-up, SliceEngineering 450 °C Thermistor
  24. const short temptable_67[][2] PROGMEM = {
  25. { OV( 22 ), 500 },
  26. { OV( 23 ), 490 },
  27. { OV( 25 ), 480 },
  28. { OV( 27 ), 470 },
  29. { OV( 29 ), 460 },
  30. { OV( 32 ), 450 },
  31. { OV( 35 ), 440 },
  32. { OV( 38 ), 430 },
  33. { OV( 41 ), 420 },
  34. { OV( 45 ), 410 },
  35. { OV( 50 ), 400 },
  36. { OV( 55 ), 390 },
  37. { OV( 60 ), 380 },
  38. { OV( 67 ), 370 },
  39. { OV( 74 ), 360 },
  40. { OV( 82 ), 350 },
  41. { OV( 91 ), 340 },
  42. { OV( 102 ), 330 },
  43. { OV( 114 ), 320 },
  44. { OV( 127 ), 310 },
  45. { OV( 143 ), 300 },
  46. { OV( 161 ), 290 },
  47. { OV( 181 ), 280 },
  48. { OV( 204 ), 270 },
  49. { OV( 229 ), 260 },
  50. { OV( 259 ), 250 },
  51. { OV( 290 ), 240 },
  52. { OV( 325 ), 230 },
  53. { OV( 364 ), 220 },
  54. { OV( 407 ), 210 },
  55. { OV( 453 ), 200 },
  56. { OV( 501 ), 190 },
  57. { OV( 551 ), 180 },
  58. { OV( 603 ), 170 },
  59. { OV( 655 ), 160 },
  60. { OV( 706 ), 150 },
  61. { OV( 755 ), 140 },
  62. { OV( 801 ), 130 },
  63. { OV( 842 ), 120 },
  64. { OV( 879 ), 110 },
  65. { OV( 910 ), 100 },
  66. { OV( 936 ), 90 },
  67. { OV( 948 ), 85 },
  68. { OV( 958 ), 80 },
  69. { OV( 975 ), 70 },
  70. { OV( 988 ), 60 },
  71. { OV( 998 ), 50 },
  72. { OV(1006 ), 40 },
  73. { OV(1011 ), 30 },
  74. { OV(1013 ), 25 },
  75. { OV(1015 ), 20 },
  76. { OV(1018 ), 10 },
  77. { OV(1020 ), 0 },
  78. { OV(1021 ), -10 },
  79. { OV(1022 ), -20 }
  80. };