@@ -481,6 +481,7 @@ G1 F200 E3 ;подать в экструдер 5мм филамента.
481
481
* 67 : 500kΩ SliceEngineering 450°C Thermistor
482
482
* 70 : 100kΩ bq Hephestos 2
483
483
* 75 : 100kΩ Generic Silicon Heat Pad with NTC100K MGB18-104F39050L32
484
+ * 2000 : 100kΩ Ultimachine Rambo TDK NTCG104LH104KT1 NTC100K motherboard Thermistor
484
485
*
485
486
* Analog Thermistors - 1kΩ pullup - Atypical, and requires changing out the 4.7kΩ pullup for 1kΩ.
486
487
* ------- (but gives greater accuracy and more stable PID)
@@ -504,7 +505,7 @@ G1 F200 E3 ;подать в экструдер 5мм филамента.
504
505
* NOTE: ADC pins are not 5V tolerant. Not recommended because it's possible to damage the CPU by going over 500°C.
505
506
* 201 : Pt100 with circuit in Overlord, similar to Ultimainboard V2.x
506
507
*
507
- * Custom/Dummy/Other Thermos
508
+ * Custom/Dummy/Other Thermal Sensors
508
509
* ------
509
510
* 0 : not used
510
511
* 1000 : Custom - Specify parameters in Configuration_adv.h
@@ -526,6 +527,7 @@ G1 F200 E3 ;подать в экструдер 5мм филамента.
526
527
#define TEMP_SENSOR_PROBE 0
527
528
#define TEMP_SENSOR_CHAMBER 0
528
529
#define TEMP_SENSOR_COOLER 0
530
+ #define TEMP_SENSOR_BOARD 0
529
531
#define TEMP_SENSOR_REDUNDANT 0
530
532
531
533
// Dummy thermistor constant temperature readings, for use with 998 and 999
@@ -558,17 +560,11 @@ G1 F200 E3 ;подать в экструдер 5мм филамента.
558
560
* the print will be aborted. Whichever sensor is selected will have its normal functions disabled; i.e. selecting
559
561
* the Bed sensor (-1) will disable bed heating/monitoring.
560
562
*
561
- * Use the following to select temp sensors:
562
- * -5 : Cooler
563
- * -4 : Probe
564
- * -3 : not used
565
- * -2 : Chamber
566
- * -1 : Bed
567
- * 0-7 : E0 through E7
563
+ * For selecting source/target use: COOLER, PROBE, BOARD, CHAMBER, BED, E0, E1, E2, E3, E4, E5, E6, E7
568
564
*/
569
565
#if TEMP_SENSOR_REDUNDANT
570
- #define TEMP_SENSOR_REDUNDANT_SOURCE 1 // The sensor that will provide the redundant reading.
571
- #define TEMP_SENSOR_REDUNDANT_TARGET 0 // The sensor that we are providing a redundant reading for.
566
+ #define TEMP_SENSOR_REDUNDANT_SOURCE E1 // The sensor that will provide the redundant reading.
567
+ #define TEMP_SENSOR_REDUNDANT_TARGET E0 // The sensor that we are providing a redundant reading for.
572
568
#define TEMP_SENSOR_REDUNDANT_MAX_DIFF 10 // (°C) Temperature difference that will trigger a print abort.
573
569
#endif
574
570
0 commit comments