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_17.h 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. // Dagoma NTC 100k white thermistor
  24. constexpr temp_entry_t temptable_17[] PROGMEM = {
  25. { OV( 16), 309 },
  26. { OV( 18), 307 },
  27. { OV( 20), 300 },
  28. { OV( 22), 293 },
  29. { OV( 26), 284 },
  30. { OV( 29), 272 },
  31. { OV( 33), 266 },
  32. { OV( 36), 260 },
  33. { OV( 42), 252 },
  34. { OV( 46), 247 },
  35. { OV( 48), 244 },
  36. { OV( 51), 241 },
  37. { OV( 62), 231 },
  38. { OV( 73), 222 },
  39. { OV( 78), 219 },
  40. { OV( 87), 212 },
  41. { OV( 98), 207 },
  42. { OV( 109), 201 },
  43. { OV( 118), 197 },
  44. { OV( 131), 191 },
  45. { OV( 145), 186 },
  46. { OV( 160), 181 },
  47. { OV( 177), 175 },
  48. { OV( 203), 169 },
  49. { OV( 222), 164 },
  50. { OV( 256), 156 },
  51. { OV( 283), 151 },
  52. { OV( 312), 145 },
  53. { OV( 343), 140 },
  54. { OV( 377), 131 },
  55. { OV( 413), 125 },
  56. { OV( 454), 119 },
  57. { OV( 496), 113 },
  58. { OV( 537), 108 },
  59. { OV( 578), 102 },
  60. { OV( 619), 97 },
  61. { OV( 658), 92 },
  62. { OV( 695), 87 },
  63. { OV( 735), 81 },
  64. { OV( 773), 75 },
  65. { OV( 808), 70 },
  66. { OV( 844), 64 },
  67. { OV( 868), 59 },
  68. { OV( 892), 54 },
  69. { OV( 914), 49 },
  70. { OV( 935), 42 },
  71. { OV( 951), 38 },
  72. { OV( 967), 32 },
  73. { OV( 975), 28 },
  74. { OV(1000), 20 },
  75. { OV(1010), 10 },
  76. { OV(1024), -273 } // for safety
  77. };