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.

thermistortable_60.h 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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. // Maker's Tool Works Kapton Bed Thermistor
  23. // ./createTemperatureLookup.py --r0=100000 --t0=25 --r1=0 --r2=4700 --beta=3950
  24. // r0: 100000
  25. // t0: 25
  26. // r1: 0 (parallel with rTherm)
  27. // r2: 4700 (series with rTherm)
  28. // beta: 3950
  29. // min adc: 1 at 0.0048828125 V
  30. // max adc: 1023 at 4.9951171875 V
  31. const short temptable_60[][2] PROGMEM = {
  32. { OV( 51), 272 },
  33. { OV( 61), 258 },
  34. { OV( 71), 247 },
  35. { OV( 81), 237 },
  36. { OV( 91), 229 },
  37. { OV( 101), 221 },
  38. { OV( 131), 204 },
  39. { OV( 161), 190 },
  40. { OV( 191), 179 },
  41. { OV( 231), 167 },
  42. { OV( 271), 157 },
  43. { OV( 311), 148 },
  44. { OV( 351), 140 },
  45. { OV( 381), 135 },
  46. { OV( 411), 130 },
  47. { OV( 441), 125 },
  48. { OV( 451), 123 },
  49. { OV( 461), 122 },
  50. { OV( 471), 120 },
  51. { OV( 481), 119 },
  52. { OV( 491), 117 },
  53. { OV( 501), 116 },
  54. { OV( 511), 114 },
  55. { OV( 521), 113 },
  56. { OV( 531), 111 },
  57. { OV( 541), 110 },
  58. { OV( 551), 108 },
  59. { OV( 561), 107 },
  60. { OV( 571), 105 },
  61. { OV( 581), 104 },
  62. { OV( 591), 102 },
  63. { OV( 601), 101 },
  64. { OV( 611), 100 },
  65. { OV( 621), 98 },
  66. { OV( 631), 97 },
  67. { OV( 641), 95 },
  68. { OV( 651), 94 },
  69. { OV( 661), 92 },
  70. { OV( 671), 91 },
  71. { OV( 681), 90 },
  72. { OV( 691), 88 },
  73. { OV( 701), 87 },
  74. { OV( 711), 85 },
  75. { OV( 721), 84 },
  76. { OV( 731), 82 },
  77. { OV( 741), 81 },
  78. { OV( 751), 79 },
  79. { OV( 761), 77 },
  80. { OV( 771), 76 },
  81. { OV( 781), 74 },
  82. { OV( 791), 72 },
  83. { OV( 801), 71 },
  84. { OV( 811), 69 },
  85. { OV( 821), 67 },
  86. { OV( 831), 65 },
  87. { OV( 841), 63 },
  88. { OV( 851), 62 },
  89. { OV( 861), 60 },
  90. { OV( 871), 57 },
  91. { OV( 881), 55 },
  92. { OV( 891), 53 },
  93. { OV( 901), 51 },
  94. { OV( 911), 48 },
  95. { OV( 921), 45 },
  96. { OV( 931), 42 },
  97. { OV( 941), 39 },
  98. { OV( 951), 36 },
  99. { OV( 961), 32 },
  100. { OV( 981), 23 },
  101. { OV( 991), 17 },
  102. { OV(1001), 9 },
  103. { OV(1008), 0 }
  104. };