Browse Source

Add EZBOARD PT100 pin

Scott Lahteine 6 years ago
parent
commit
7183a586d9
1 changed files with 7 additions and 1 deletions
  1. 7
    1
      Marlin/src/pins/lpc1769/pins_TH3D_EZBOARD.h

+ 7
- 1
Marlin/src/pins/lpc1769/pins_TH3D_EZBOARD.h View File

@@ -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

Loading…
Cancel
Save