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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. #define OVM(V) OV((V)*(0.327/0.327))
  24. // R25 = 100 kOhm, beta25 = 4092 K, 4.7 kOhm pull-up, bed thermistor
  25. const short temptable_332[][2] PROGMEM = {
  26. { OVM( 268), 150 },
  27. { OVM( 293), 145 },
  28. { OVM( 320), 141 },
  29. { OVM( 379), 133 },
  30. { OVM( 445), 122 },
  31. { OVM( 516), 108 },
  32. { OVM( 591), 98 },
  33. { OVM( 665), 88 },
  34. { OVM( 737), 79 },
  35. { OVM( 801), 70 },
  36. { OVM( 857), 55 },
  37. { OVM( 903), 46 },
  38. { OVM( 939), 39 },
  39. { OVM( 954), 33 },
  40. { OVM( 966), 27 },
  41. { OVM( 977), 22 },
  42. { OVM( 999), 15 },
  43. { OVM(1004), 5 },
  44. { OVM(1008), 0 },
  45. { OVM(1012), -5 },
  46. { OVM(1016), -10 },
  47. { OVM(1020), -15 }
  48. };