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_15.h 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. // 100k bed thermistor in JGAurora A5. Calibrated by Sam Pinches 21st Jan 2018 using cheap k-type thermocouple inserted into heater block, using TM-902C meter.
  24. const short temptable_15[][2] PROGMEM = {
  25. { OV( 31), 275 },
  26. { OV( 33), 270 },
  27. { OV( 35), 260 },
  28. { OV( 38), 253 },
  29. { OV( 41), 248 },
  30. { OV( 48), 239 },
  31. { OV( 56), 232 },
  32. { OV( 66), 222 },
  33. { OV( 78), 212 },
  34. { OV( 93), 206 },
  35. { OV( 106), 199 },
  36. { OV( 118), 191 },
  37. { OV( 130), 186 },
  38. { OV( 158), 176 },
  39. { OV( 187), 167 },
  40. { OV( 224), 158 },
  41. { OV( 270), 148 },
  42. { OV( 321), 137 },
  43. { OV( 379), 127 },
  44. { OV( 446), 117 },
  45. { OV( 518), 106 },
  46. { OV( 593), 96 },
  47. { OV( 668), 86 },
  48. { OV( 739), 76 },
  49. { OV( 767), 72 },
  50. { OV( 830), 62 },
  51. { OV( 902), 48 },
  52. { OV( 926), 45 },
  53. { OV( 955), 35 },
  54. { OV( 966), 30 },
  55. { OV( 977), 25 },
  56. { OV( 985), 20 },
  57. { OV( 993), 15 },
  58. { OV( 999), 10 },
  59. { OV(1004), 5 },
  60. { OV(1008), 0 },
  61. { OV(1012), -5 },
  62. { OV(1016), -10 },
  63. { OV(1020), -15 }
  64. };