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.

thermistortable_70.h 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. // bqh2 stock thermistor
  23. const short temptable_70[][2] PROGMEM = {
  24. { OV( 22), 300 },
  25. { OV( 24), 295 },
  26. { OV( 25), 290 },
  27. { OV( 27), 285 },
  28. { OV( 29), 280 },
  29. { OV( 32), 275 },
  30. { OV( 34), 270 },
  31. { OV( 37), 265 },
  32. { OV( 40), 260 },
  33. { OV( 43), 255 },
  34. { OV( 46), 250 },
  35. { OV( 50), 245 },
  36. { OV( 54), 240 },
  37. { OV( 59), 235 },
  38. { OV( 64), 230 },
  39. { OV( 70), 225 },
  40. { OV( 76), 220 },
  41. { OV( 83), 215 },
  42. { OV( 90), 210 },
  43. { OV( 99), 205 },
  44. { OV( 108), 200 },
  45. { OV( 118), 195 },
  46. { OV( 129), 190 },
  47. { OV( 141), 185 },
  48. { OV( 154), 180 },
  49. { OV( 169), 175 },
  50. { OV( 185), 170 },
  51. { OV( 203), 165 },
  52. { OV( 222), 160 },
  53. { OV( 243), 155 },
  54. { OV( 266), 150 },
  55. { OV( 290), 145 },
  56. { OV( 317), 140 },
  57. { OV( 346), 135 },
  58. { OV( 376), 130 },
  59. { OV( 408), 125 },
  60. { OV( 442), 120 },
  61. { OV( 477), 115 },
  62. { OV( 513), 110 },
  63. { OV( 551), 105 },
  64. { OV( 588), 100 },
  65. { OV( 626), 95 },
  66. { OV( 663), 90 },
  67. { OV( 699), 85 },
  68. { OV( 735), 80 },
  69. { OV( 768), 75 },
  70. { OV( 800), 70 },
  71. { OV( 829), 65 },
  72. { OV( 856), 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( 986), 20 },
  81. { OV( 994), 15 },
  82. { OV(1000), 10 },
  83. { OV(1005), 5 },
  84. { OV(1009), 0 } // safety
  85. };