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_22.h 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 hotend thermistor with 4.7k pull up to 3.3v and 220R to analog input as in GTM32 Pro vB
  23. constexpr temp_entry_t temptable_22[] PROGMEM = {
  24. { OV( 1), 352 },
  25. { OV( 6), 341 },
  26. { OV( 11), 330 },
  27. { OV( 16), 319 },
  28. { OV( 20), 307 },
  29. { OV( 26), 296 },
  30. { OV( 31), 285 },
  31. { OV( 40), 274 },
  32. { OV( 51), 263 },
  33. { OV( 61), 251 },
  34. { OV( 72), 245 },
  35. { OV( 77), 240 },
  36. { OV( 82), 237 },
  37. { OV( 87), 232 },
  38. { OV( 91), 229 },
  39. { OV( 94), 227 },
  40. { OV( 97), 225 },
  41. { OV( 100), 223 },
  42. { OV( 104), 221 },
  43. { OV( 108), 219 },
  44. { OV( 115), 214 },
  45. { OV( 126), 209 },
  46. { OV( 137), 204 },
  47. { OV( 147), 200 },
  48. { OV( 158), 193 },
  49. { OV( 167), 192 },
  50. { OV( 177), 189 },
  51. { OV( 197), 163 },
  52. { OV( 230), 174 },
  53. { OV( 267), 165 },
  54. { OV( 310), 158 },
  55. { OV( 336), 151 },
  56. { OV( 379), 143 },
  57. { OV( 413), 138 },
  58. { OV( 480), 127 },
  59. { OV( 580), 110 },
  60. { OV( 646), 100 },
  61. { OV( 731), 88 },
  62. { OV( 768), 84 },
  63. { OV( 861), 69 },
  64. { OV( 935), 50 },
  65. { OV( 975), 38 },
  66. { OV(1001), 27 },
  67. { OV(1011), 22 },
  68. { OV(1015), 13 },
  69. { OV(1020), 6 },
  70. { OV(1023), 0 }
  71. };