My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

thermistortable_6.h 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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 Epcos thermistor
  23. const short temptable_6[][2] PROGMEM = {
  24. { OV( 1), 350 },
  25. { OV( 28), 250 }, // top rating 250C
  26. { OV( 31), 245 },
  27. { OV( 35), 240 },
  28. { OV( 39), 235 },
  29. { OV( 42), 230 },
  30. { OV( 44), 225 },
  31. { OV( 49), 220 },
  32. { OV( 53), 215 },
  33. { OV( 62), 210 },
  34. { OV( 71), 205 }, // fitted graphically
  35. { OV( 78), 200 }, // fitted graphically
  36. { OV( 94), 190 },
  37. { OV( 102), 185 },
  38. { OV( 116), 170 },
  39. { OV( 143), 160 },
  40. { OV( 183), 150 },
  41. { OV( 223), 140 },
  42. { OV( 270), 130 },
  43. { OV( 318), 120 },
  44. { OV( 383), 110 },
  45. { OV( 413), 105 },
  46. { OV( 439), 100 },
  47. { OV( 484), 95 },
  48. { OV( 513), 90 },
  49. { OV( 607), 80 },
  50. { OV( 664), 70 },
  51. { OV( 781), 60 },
  52. { OV( 810), 55 },
  53. { OV( 849), 50 },
  54. { OV( 914), 45 },
  55. { OV( 914), 40 },
  56. { OV( 935), 35 },
  57. { OV( 954), 30 },
  58. { OV( 970), 25 },
  59. { OV( 978), 22 },
  60. { OV(1008), 3 },
  61. { OV(1023), 0 } // to allow internal 0 degrees C
  62. };