My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

thermistor_201.h 1.6KB

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. #define REVERSE_TEMP_SENSOR_RANGE_201 1
  24. // Pt100 with LMV324 amp on Overlord v1.1 electronics
  25. const temp_entry_t temptable_201[] PROGMEM = {
  26. { OV( 0), 0 },
  27. { OV( 8), 1 },
  28. { OV( 23), 6 },
  29. { OV( 41), 15 },
  30. { OV( 51), 20 },
  31. { OV( 68), 28 },
  32. { OV( 74), 30 },
  33. { OV( 88), 35 },
  34. { OV( 99), 40 },
  35. { OV( 123), 50 },
  36. { OV( 148), 60 },
  37. { OV( 173), 70 },
  38. { OV( 198), 80 },
  39. { OV( 221), 90 },
  40. { OV( 245), 100 },
  41. { OV( 269), 110 },
  42. { OV( 294), 120 },
  43. { OV( 316), 130 },
  44. { OV( 342), 140 },
  45. { OV( 364), 150 },
  46. { OV( 387), 160 },
  47. { OV( 412), 170 },
  48. { OV( 433), 180 },
  49. { OV( 456), 190 },
  50. { OV( 480), 200 },
  51. { OV( 500), 210 },
  52. { OV( 548), 224 },
  53. { OV( 572), 233 },
  54. { OV(1155), 490 }
  55. };