My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

thermistor_512.h 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. // 100k thermistor supplied with RPW-Ultra hotend, 4.7k pullup
  23. constexpr temp_entry_t temptable_512[] PROGMEM = {
  24. { OV(26), 300 },
  25. { OV(28), 295 },
  26. { OV(30), 290 },
  27. { OV(32), 285 },
  28. { OV(34), 280 },
  29. { OV(37), 275 },
  30. { OV(39), 270 },
  31. { OV(42), 265 },
  32. { OV(46), 260 },
  33. { OV(49), 255 },
  34. { OV(53), 250 }, // 256.5
  35. { OV(57), 245 },
  36. { OV(62), 240 },
  37. { OV(67), 235 },
  38. { OV(73), 230 },
  39. { OV(79), 225 },
  40. { OV(86), 220 },
  41. { OV(94), 215 },
  42. { OV(103), 210 },
  43. { OV(112), 205 },
  44. { OV(123), 200 },
  45. { OV(135), 195 },
  46. { OV(148), 190 },
  47. { OV(162), 185 },
  48. { OV(178), 180 },
  49. { OV(195), 175 },
  50. { OV(215), 170 },
  51. { OV(235), 165 },
  52. { OV(258), 160 },
  53. { OV(283), 155 },
  54. { OV(310), 150 }, // 2040.6
  55. { OV(338), 145 },
  56. { OV(369), 140 },
  57. { OV(401), 135 },
  58. { OV(435), 130 },
  59. { OV(470), 125 },
  60. { OV(505), 120 },
  61. { OV(542), 115 },
  62. { OV(579), 110 },
  63. { OV(615), 105 },
  64. { OV(651), 100 },
  65. { OV(686), 95 },
  66. { OV(720), 90 },
  67. { OV(751), 85 },
  68. { OV(781), 80 },
  69. { OV(809), 75 },
  70. { OV(835), 70 },
  71. { OV(858), 65 },
  72. { OV(880), 60 },
  73. { OV(899), 55 },
  74. { OV(915), 50 },
  75. { OV(930), 45 },
  76. { OV(944), 40 },
  77. { OV(955), 35 },
  78. { OV(965), 30 }, // 78279.3
  79. { OV(974), 25 },
  80. { OV(981), 20 },
  81. { OV(988), 15 },
  82. { OV(993), 10 },
  83. { OV(998), 5 },
  84. { OV(1002), 0 },
  85. };