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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2019 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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. // Stock BQ Hephestos 2 100k thermistor.
  24. // Created on 29/12/2017 with an ambient temperature of 20C.
  25. // ANENG AN8009 DMM with a K-type probe used for measurements.
  26. // R25 = 100 kOhm, beta25 = 4100 K, 4.7 kOhm pull-up, bqh2 stock thermistor
  27. const short temptable_70[][2] PROGMEM = {
  28. { OV( 18), 270 },
  29. { OV( 27), 248 },
  30. { OV( 34), 234 },
  31. { OV( 45), 220 },
  32. { OV( 61), 205 },
  33. { OV( 86), 188 },
  34. { OV( 123), 172 },
  35. { OV( 420), 110 },
  36. { OV( 590), 90 },
  37. { OV( 845), 56 },
  38. { OV( 970), 25 },
  39. { OV( 986), 20 },
  40. { OV( 994), 15 },
  41. { OV(1000), 10 },
  42. { OV(1005), 5 },
  43. { OV(1009), 0 } // safety
  44. };