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_68.h 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. #define REVERSE_TEMP_SENSOR_RANGE_68 1
  24. // PT100 amplifier board from Dyze Design
  25. const temp_entry_t temptable_68[] PROGMEM = {
  26. { OV(273), 0 },
  27. { OV(294), 20 },
  28. { OV(315), 40 },
  29. { OV(336), 60 },
  30. { OV(356), 80 },
  31. { OV(376), 100 },
  32. { OV(396), 120 },
  33. { OV(416), 140 },
  34. { OV(436), 160 },
  35. { OV(455), 180 },
  36. { OV(474), 200 },
  37. { OV(494), 220 },
  38. { OV(513), 240 },
  39. { OV(531), 260 },
  40. { OV(550), 280 },
  41. { OV(568), 300 },
  42. { OV(587), 320 },
  43. { OV(605), 340 },
  44. { OV(623), 360 },
  45. { OV(641), 380 },
  46. { OV(658), 400 },
  47. { OV(676), 420 },
  48. { OV(693), 440 },
  49. { OV(710), 460 },
  50. { OV(727), 480 },
  51. { OV(744), 500 }
  52. };