|
@@ -42,41 +42,41 @@
|
42
|
42
|
|
43
|
43
|
#define LED_PIN 13
|
44
|
44
|
|
45
|
|
-#define FAN_PIN 7
|
46
|
|
-#define FAN1_PIN 8
|
|
45
|
+#define FAN_PIN 7
|
|
46
|
+#define FAN1_PIN 8
|
47
|
47
|
|
48
|
48
|
#define PS_ON_PIN 45
|
49
|
49
|
#define KILL_PIN 46
|
50
|
50
|
|
51
|
51
|
#if (TEMP_SENSOR_0==0)
|
52
|
|
- #define TEMP_0_PIN -1
|
53
|
|
- #define HEATER_0_PIN -1
|
|
52
|
+ #define TEMP_0_PIN -1
|
|
53
|
+ #define HEATER_0_PIN -1
|
54
|
54
|
#else
|
55
|
|
- #define HEATER_0_PIN 2 // EXTRUDER 1
|
|
55
|
+ #define HEATER_0_PIN 2 // EXTRUDER 1
|
56
|
56
|
#if (TEMP_SENSOR_0==-1)
|
57
|
|
- #define TEMP_0_PIN 6 // ANALOG NUMBERING - connector *K1* on RUMBA thermocouple ADD ON is used
|
|
57
|
+ #define TEMP_0_PIN 6 // ANALOG NUMBERING - connector *K1* on RUMBA thermocouple ADD ON is used
|
58
|
58
|
#else
|
59
|
59
|
#define TEMP_0_PIN 15 // ANALOG NUMBERING - default connector for thermistor *T0* on rumba board is used
|
60
|
60
|
#endif
|
61
|
61
|
#endif
|
62
|
62
|
|
63
|
63
|
#if (TEMP_SENSOR_1==0)
|
64
|
|
- #define TEMP_1_PIN -1
|
65
|
|
- #define HEATER_1_PIN -1
|
|
64
|
+ #define TEMP_1_PIN -1
|
|
65
|
+ #define HEATER_1_PIN -1
|
66
|
66
|
#else
|
67
|
|
- #define HEATER_1_PIN 3 // EXTRUDER 2
|
|
67
|
+ #define HEATER_1_PIN 3 // EXTRUDER 2
|
68
|
68
|
#if (TEMP_SENSOR_1==-1)
|
69
|
|
- #define TEMP_1_PIN 5 // ANALOG NUMBERING - connector *K2* on RUMBA thermocouple ADD ON is used
|
|
69
|
+ #define TEMP_1_PIN 5 // ANALOG NUMBERING - connector *K2* on RUMBA thermocouple ADD ON is used
|
70
|
70
|
#else
|
71
|
71
|
#define TEMP_1_PIN 14 // ANALOG NUMBERING - default connector for thermistor *T1* on rumba board is used
|
72
|
72
|
#endif
|
73
|
73
|
#endif
|
74
|
74
|
|
75
|
75
|
#if (TEMP_SENSOR_2==0)
|
76
|
|
- #define TEMP_2_PIN -1
|
77
|
|
- #define HEATER_2_PIN -1
|
|
76
|
+ #define TEMP_2_PIN -1
|
|
77
|
+ #define HEATER_2_PIN -1
|
78
|
78
|
#else
|
79
|
|
- #define HEATER_2_PIN 6 // EXTRUDER 3
|
|
79
|
+ #define HEATER_2_PIN 6 // EXTRUDER 3
|
80
|
80
|
#if (TEMP_SENSOR_2==-1)
|
81
|
81
|
#define TEMP_2_PIN 7 // ANALOG NUMBERING - connector *K3* on RUMBA thermocouple ADD ON is used <-- this can not be used when TEMP_SENSOR_BED is defined as thermocouple
|
82
|
82
|
#else
|
|
@@ -88,14 +88,14 @@
|
88
|
88
|
//optional FAN1 can be used as 4th heater output: #define HEATER_3_PIN 8 // EXTRUDER 4
|
89
|
89
|
|
90
|
90
|
#if (TEMP_SENSOR_BED==0)
|
91
|
|
- #define TEMP_BED_PIN -1
|
92
|
|
- #define HEATER_BED_PIN -1
|
|
91
|
+ #define TEMP_BED_PIN -1
|
|
92
|
+ #define HEATER_BED_PIN -1
|
93
|
93
|
#else
|
94
|
|
- #define HEATER_BED_PIN 9 // BED
|
|
94
|
+ #define HEATER_BED_PIN 9 // BED
|
95
|
95
|
#if (TEMP_SENSOR_BED==-1)
|
96
|
96
|
#define TEMP_BED_PIN 7 // ANALOG NUMBERING - connector *K3* on RUMBA thermocouple ADD ON is used <-- this can not be used when TEMP_SENSOR_2 is defined as thermocouple
|
97
|
97
|
#else
|
98
|
|
- #define TEMP_BED_PIN 11 // ANALOG NUMBERING - default connector for thermistor *THB* on rumba board is used
|
|
98
|
+ #define TEMP_BED_PIN 11 // ANALOG NUMBERING - default connector for thermistor *THB* on rumba board is used
|
99
|
99
|
#endif
|
100
|
100
|
#endif
|
101
|
101
|
|