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_503.h 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. // Zonestar (Z8XM2) Heated Bed thermistor. Added By AvanOsch
  24. // These are taken from the Zonestar settings in original Repetier firmware: Z8XM2_ZRIB_LCD12864_V51.zip
  25. constexpr temp_entry_t temptable_503[] PROGMEM = {
  26. { OV( 12), 300 },
  27. { OV( 27), 270 },
  28. { OV( 47), 250 },
  29. { OV( 68), 230 },
  30. { OV( 99), 210 },
  31. { OV( 120), 200 },
  32. { OV( 141), 190 },
  33. { OV( 171), 180 },
  34. { OV( 201), 170 },
  35. { OV( 261), 160 },
  36. { OV( 321), 150 },
  37. { OV( 401), 140 },
  38. { OV( 451), 130 },
  39. { OV( 551), 120 },
  40. { OV( 596), 110 },
  41. { OV( 626), 105 },
  42. { OV( 666), 100 },
  43. { OV( 697), 90 },
  44. { OV( 717), 85 },
  45. { OV( 798), 69 },
  46. { OV( 819), 65 },
  47. { OV( 870), 55 },
  48. { OV( 891), 51 },
  49. { OV( 922), 39 },
  50. { OV( 968), 28 },
  51. { OV( 980), 23 },
  52. { OV( 991), 17 },
  53. { OV( 1001), 9 },
  54. { OV(1021), -27 },
  55. { OV(1023), -200}
  56. };