My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. // Unknown thermistor for the Zonestar P802M hot bed. Adjusted By Nerseth
  24. // These were the shipped settings from Zonestar in original firmware: P802M_8_Repetier_V1.6_Zonestar.zip
  25. constexpr temp_entry_t temptable_502[] PROGMEM = {
  26. { OV( 56.0 / 4), 300 },
  27. { OV( 187.0 / 4), 250 },
  28. { OV( 615.0 / 4), 190 },
  29. { OV( 690.0 / 4), 185 },
  30. { OV( 750.0 / 4), 180 },
  31. { OV( 830.0 / 4), 175 },
  32. { OV( 920.0 / 4), 170 },
  33. { OV(1010.0 / 4), 165 },
  34. { OV(1118.0 / 4), 160 },
  35. { OV(1215.0 / 4), 155 },
  36. { OV(1330.0 / 4), 145 },
  37. { OV(1460.0 / 4), 140 },
  38. { OV(1594.0 / 4), 135 },
  39. { OV(1752.0 / 4), 130 },
  40. { OV(1900.0 / 4), 125 },
  41. { OV(2040.0 / 4), 120 },
  42. { OV(2200.0 / 4), 115 },
  43. { OV(2350.0 / 4), 110 },
  44. { OV(2516.0 / 4), 105 },
  45. { OV(2671.0 / 4), 98 },
  46. { OV(2831.0 / 4), 92 },
  47. { OV(2975.0 / 4), 85 },
  48. { OV(3115.0 / 4), 76 },
  49. { OV(3251.0 / 4), 72 },
  50. { OV(3480.0 / 4), 62 },
  51. { OV(3580.0 / 4), 52 },
  52. { OV(3660.0 / 4), 46 },
  53. { OV(3740.0 / 4), 40 },
  54. { OV(3869.0 / 4), 30 },
  55. { OV(3912.0 / 4), 25 },
  56. { OV(3948.0 / 4), 20 },
  57. { OV(4077.0 / 4), -20 },
  58. { OV(4094.0 / 4), -55 }
  59. };