Browse Source

Sensor 502 and PTC cleanup

Scott Lahteine 4 years ago
parent
commit
caeba33d28
2 changed files with 11 additions and 10 deletions
  1. 1
    0
      Marlin/Configuration.h
  2. 10
    10
      Marlin/Configuration_adv.h

+ 1
- 0
Marlin/Configuration.h View File

373
  *     4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
373
  *     4 : 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
374
  *     5 : 100K thermistor - ATC Semitec 104GT-2/104NT-4-R025H42G (Used in ParCan, J-Head, and E3D) (4.7k pullup)
374
  *     5 : 100K thermistor - ATC Semitec 104GT-2/104NT-4-R025H42G (Used in ParCan, J-Head, and E3D) (4.7k pullup)
375
  *   501 : 100K Zonestar (Tronxy X3A) Thermistor
375
  *   501 : 100K Zonestar (Tronxy X3A) Thermistor
376
+ *   502 : 100K Zonestar Thermistor used by hot bed in Zonestar Prusa P802M
376
  *   512 : 100k RPW-Ultra hotend thermistor (4.7k pullup)
377
  *   512 : 100k RPW-Ultra hotend thermistor (4.7k pullup)
377
  *     6 : 100k EPCOS - Not as accurate as table 1 (created using a fluke thermocouple) (4.7k pullup)
378
  *     6 : 100k EPCOS - Not as accurate as table 1 (created using a fluke thermocouple) (4.7k pullup)
378
  *     7 : 100k Honeywell thermistor 135-104LAG-J01 (4.7k pullup)
379
  *     7 : 100k Honeywell thermistor 135-104LAG-J01 (4.7k pullup)

+ 10
- 10
Marlin/Configuration_adv.h View File

1666
     // Probe temperature calibration generates a table of values starting at PTC_SAMPLE_START
1666
     // Probe temperature calibration generates a table of values starting at PTC_SAMPLE_START
1667
     // (e.g. 30), in steps of PTC_SAMPLE_RES (e.g. 5) with PTC_SAMPLE_COUNT (e.g. 10) samples.
1667
     // (e.g. 30), in steps of PTC_SAMPLE_RES (e.g. 5) with PTC_SAMPLE_COUNT (e.g. 10) samples.
1668
 
1668
 
1669
-    // #define PTC_SAMPLE_START  30.0f
1670
-    // #define PTC_SAMPLE_RES    5.0f
1671
-    // #define PTC_SAMPLE_COUNT  10U
1669
+    //#define PTC_SAMPLE_START  30.0f
1670
+    //#define PTC_SAMPLE_RES    5.0f
1671
+    //#define PTC_SAMPLE_COUNT  10U
1672
 
1672
 
1673
     // Bed temperature calibration builds a similar table.
1673
     // Bed temperature calibration builds a similar table.
1674
 
1674
 
1675
-    // #define BTC_SAMPLE_START  60.0f
1676
-    // #define BTC_SAMPLE_RES    5.0f
1677
-    // #define BTC_SAMPLE_COUNT  10U
1675
+    //#define BTC_SAMPLE_START  60.0f
1676
+    //#define BTC_SAMPLE_RES    5.0f
1677
+    //#define BTC_SAMPLE_COUNT  10U
1678
 
1678
 
1679
     // The temperature the probe should be at while taking measurements during bed temperature
1679
     // The temperature the probe should be at while taking measurements during bed temperature
1680
     // calibration.
1680
     // calibration.
1681
-    // #define BTC_PROBE_TEMP 30.0f
1681
+    //#define BTC_PROBE_TEMP 30.0f
1682
 
1682
 
1683
     // Height above Z=0.0f to raise the nozzle. Lowering this can help the probe to heat faster.
1683
     // Height above Z=0.0f to raise the nozzle. Lowering this can help the probe to heat faster.
1684
     // Note: the Z=0.0f offset is determined by the probe offset which can be set using M851.
1684
     // Note: the Z=0.0f offset is determined by the probe offset which can be set using M851.
1685
-    // #define PTC_PROBE_HEATING_OFFSET 0.5f
1685
+    //#define PTC_PROBE_HEATING_OFFSET 0.5f
1686
 
1686
 
1687
     // Height to raise the Z-probe between heating and taking the next measurement. Some probes
1687
     // Height to raise the Z-probe between heating and taking the next measurement. Some probes
1688
     // may fail to untrigger if they have been triggered for a long time, which can be solved by
1688
     // may fail to untrigger if they have been triggered for a long time, which can be solved by
1689
     // increasing the height the probe is raised to.
1689
     // increasing the height the probe is raised to.
1690
-    // #define PTC_PROBE_RAISE 15U
1690
+    //#define PTC_PROBE_RAISE 15U
1691
 
1691
 
1692
     // If the probe is outside of the defined range, use linear extrapolation using the closest
1692
     // If the probe is outside of the defined range, use linear extrapolation using the closest
1693
     // point and the PTC_LINEAR_EXTRAPOLATION'th next point. E.g. if set to 4 it will use data[0]
1693
     // point and the PTC_LINEAR_EXTRAPOLATION'th next point. E.g. if set to 4 it will use data[0]
1694
     // and data[4] to perform linear extrapolation for values below PTC_SAMPLE_START.
1694
     // and data[4] to perform linear extrapolation for values below PTC_SAMPLE_START.
1695
-    // #define PTC_LINEAR_EXTRAPOLATION 4
1695
+    //#define PTC_LINEAR_EXTRAPOLATION 4
1696
   #endif
1696
   #endif
1697
 #endif
1697
 #endif
1698
 
1698
 

Loading…
Cancel
Save