|
@@ -93,9 +93,15 @@
|
93
|
93
|
// Temp Sensors
|
94
|
94
|
// 3.3V max when defined as an Analog Input!
|
95
|
95
|
//
|
96
|
|
-#define TEMP_0_PIN 0 // Analog Input P0_23
|
|
96
|
+#if TEMP_SENSOR_0 == 20 // PT100 Adapter
|
|
97
|
+ #define TEMP_0_PIN 7 // Analog Input
|
|
98
|
+#else
|
|
99
|
+ #define TEMP_0_PIN 0 // Analog Input P0_23
|
|
100
|
+#endif
|
|
101
|
+
|
97
|
102
|
#define TEMP_BED_PIN 1 // Analog Input P0_24
|
98
|
103
|
#define TEMP_1_PIN 2 // Analog Input P0_25
|
|
104
|
+
|
99
|
105
|
#if ENABLED(FILAMENT_WIDTH_SENSOR)
|
100
|
106
|
#define FILWIDTH_PIN 3 // Analog Input P0_26
|
101
|
107
|
#else
|