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_505.h 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2022 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. // ZONESTAR hotbed QWG-104F-3950 thermistor
  24. constexpr temp_entry_t temptable_505[] PROGMEM = {
  25. { OV( 1), 938 },
  26. { OV( 8), 320 },
  27. { OV( 16), 300 },
  28. { OV( 27), 290 },
  29. { OV( 36), 272 },
  30. { OV( 47), 258 },
  31. { OV( 56), 248 },
  32. { OV( 68), 245 },
  33. { OV( 78), 237 },
  34. { OV( 89), 228 },
  35. { OV( 99), 221 },
  36. { OV( 110), 215 },
  37. { OV( 120), 209 },
  38. { OV( 131), 204 },
  39. { OV( 141), 199 },
  40. { OV( 151), 195 },
  41. { OV( 161), 190 },
  42. { OV( 171), 187 },
  43. { OV( 181), 183 },
  44. { OV( 201), 179 },
  45. { OV( 221), 170 },
  46. { OV( 251), 165 },
  47. { OV( 261), 160 },
  48. { OV( 321), 150 },
  49. { OV( 361), 144 },
  50. { OV( 401), 140 },
  51. { OV( 421), 133 },
  52. { OV( 451), 130 },
  53. { OV( 551), 120 },
  54. { OV( 571), 117 },
  55. { OV( 596), 110 },
  56. { OV( 626), 105 },
  57. { OV( 666), 100 },
  58. { OV( 677), 95 },
  59. { OV( 697), 90 },
  60. { OV( 717), 85 },
  61. { OV( 727), 79 },
  62. { OV( 750), 72 },
  63. { OV( 789), 69 },
  64. { OV( 819), 65 },
  65. { OV( 861), 57 },
  66. { OV( 870), 55 },
  67. { OV( 881), 51 },
  68. { OV( 911), 45 },
  69. { OV( 922), 39 },
  70. { OV( 968), 28 },
  71. { OV( 977), 25 },
  72. { OV( 985), 23 },
  73. { OV( 993), 20 },
  74. { OV( 999), 18 },
  75. { OV(1004), 15 },
  76. { OV(1008), 12 },
  77. { OV(1012), 8 },
  78. { OV(1016), 5 },
  79. { OV(1020), 0 },
  80. { OV(1023), -5 }
  81. };