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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. #pragma once
  23. #define REVERSE_TEMP_SENSOR_RANGE_20 1
  24. // Pt100 with INA826 amp on Ultimaker v2.0 electronics
  25. constexpr temp_entry_t temptable_20[] PROGMEM = {
  26. { OV( 0), 0 },
  27. { OV(227), 1 },
  28. { OV(236), 10 },
  29. { OV(245), 20 },
  30. { OV(253), 30 },
  31. { OV(262), 40 },
  32. { OV(270), 50 },
  33. { OV(279), 60 },
  34. { OV(287), 70 },
  35. { OV(295), 80 },
  36. { OV(304), 90 },
  37. { OV(312), 100 },
  38. { OV(320), 110 },
  39. { OV(329), 120 },
  40. { OV(337), 130 },
  41. { OV(345), 140 },
  42. { OV(353), 150 },
  43. { OV(361), 160 },
  44. { OV(369), 170 },
  45. { OV(377), 180 },
  46. { OV(385), 190 },
  47. { OV(393), 200 },
  48. { OV(401), 210 },
  49. { OV(409), 220 },
  50. { OV(417), 230 },
  51. { OV(424), 240 },
  52. { OV(432), 250 },
  53. { OV(440), 260 },
  54. { OV(447), 270 },
  55. { OV(455), 280 },
  56. { OV(463), 290 },
  57. { OV(470), 300 },
  58. { OV(478), 310 },
  59. { OV(485), 320 },
  60. { OV(493), 330 },
  61. { OV(500), 340 },
  62. { OV(507), 350 },
  63. { OV(515), 360 },
  64. { OV(522), 370 },
  65. { OV(529), 380 },
  66. { OV(537), 390 },
  67. { OV(544), 400 },
  68. { OV(614), 500 },
  69. { OV(681), 600 },
  70. { OV(744), 700 },
  71. { OV(805), 800 },
  72. { OV(862), 900 },
  73. { OV(917), 1000 },
  74. { OV(968), 1100 }
  75. };