My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

thermistortable_1.h 2.2KB

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