Browse Source

Remove "the click" comments

Scott Lahteine 8 years ago
parent
commit
42dcc3bf50

+ 1
- 1
Marlin/pins_3DRAG.h View File

86
   #undef BTN_ENC
86
   #undef BTN_ENC
87
   #define BTN_EN1 16
87
   #define BTN_EN1 16
88
   #define BTN_EN2 17
88
   #define BTN_EN2 17
89
-  #define BTN_ENC 23 //the click
89
+  #define BTN_ENC 23
90
 
90
 
91
 #else
91
 #else
92
 
92
 

+ 1
- 1
Marlin/pins_ELEFU_3.h View File

87
 
87
 
88
   #define BTN_EN1          14
88
   #define BTN_EN1          14
89
   #define BTN_EN2          39
89
   #define BTN_EN2          39
90
-  #define BTN_ENC          15  //the click
91
 
90
 
92
   #define BLEN_C            2
91
   #define BLEN_C            2
93
   #define BLEN_B            1
92
   #define BLEN_B            1
94
   #define BLEN_A            0
93
   #define BLEN_A            0
94
+  #define BTN_ENC          15
95
 
95
 
96
 #endif // RA_CONTROL_PANEL
96
 #endif // RA_CONTROL_PANEL
97
 
97
 

+ 1
- 1
Marlin/pins_GEN7_CUSTOM.h View File

86
 //buttons are directly attached
86
 //buttons are directly attached
87
 #define BTN_EN1 11
87
 #define BTN_EN1 11
88
 #define BTN_EN2 10
88
 #define BTN_EN2 10
89
-#define BTN_ENC 12  //the click
89
+#define BTN_ENC 12
90
 
90
 

+ 4
- 4
Marlin/pins_MEGACONTROLLER.h View File

113
   //#define LCD_SCREEN_ROT_90
113
   //#define LCD_SCREEN_ROT_90
114
   //#define LCD_SCREEN_ROT_180
114
   //#define LCD_SCREEN_ROT_180
115
   //#define LCD_SCREEN_ROT_270
115
   //#define LCD_SCREEN_ROT_270
116
-  //The encoder and click button
116
+
117
   #define BTN_EN1 48
117
   #define BTN_EN1 48
118
   #define BTN_EN2 11
118
   #define BTN_EN2 11
119
-  #define BTN_ENC 10  //the click switch
120
-  //not connected to a pin
119
+  #define BTN_ENC 10
120
+
121
   #define SD_DETECT_PIN 49
121
   #define SD_DETECT_PIN 49
122
-#endif //Minipanel
122
+#endif // MINIPANEL
123
 
123
 

+ 1
- 1
Marlin/pins_MEGATRONICS_2.h View File

101
 // Buttons are directly attached using keypad
101
 // Buttons are directly attached using keypad
102
 #define BTN_EN1 61
102
 #define BTN_EN1 61
103
 #define BTN_EN2 59
103
 #define BTN_EN2 59
104
-#define BTN_ENC 43 //the click
105
 
104
 
106
 #define BLEN_C 2
105
 #define BLEN_C 2
107
 #define BLEN_B 1
106
 #define BLEN_B 1
108
 #define BLEN_A 0
107
 #define BLEN_A 0
109
 
108
 
109
+#define BTN_ENC 43

+ 1
- 1
Marlin/pins_PRINTRBOARD.h View File

132
   //The encoder and click button (FastIO Pins)
132
   //The encoder and click button (FastIO Pins)
133
   #define BTN_EN1 26
133
   #define BTN_EN1 26
134
   #define BTN_EN2 27
134
   #define BTN_EN2 27
135
-  #define BTN_ENC 47  //the click switch
135
+  #define BTN_ENC 47
136
 
136
 
137
   #define SDSS 45
137
   #define SDSS 45
138
   #define SD_DETECT_PIN -1 // FastIO (Manual says 72 I'm not certain cause I can't test)
138
   #define SD_DETECT_PIN -1 // FastIO (Manual says 72 I'm not certain cause I can't test)

+ 1
- 1
Marlin/pins_PRINTRBOARD_REVF.h View File

136
   //The encoder and click button (FastIO Pins)
136
   //The encoder and click button (FastIO Pins)
137
   #define BTN_EN1 26
137
   #define BTN_EN1 26
138
   #define BTN_EN2 27
138
   #define BTN_EN2 27
139
-  #define BTN_ENC 47  //the click switch
139
+  #define BTN_ENC 47
140
 
140
 
141
   #define SDSS 45
141
   #define SDSS 45
142
   #define SD_DETECT_PIN -1 // FastIO (Manual says 72 I'm not certain cause I can't test)
142
   #define SD_DETECT_PIN -1 // FastIO (Manual says 72 I'm not certain cause I can't test)

+ 2
- 2
Marlin/pins_RAMBO.h View File

127
     //buttons are directly attached using AUX-2
127
     //buttons are directly attached using AUX-2
128
     #define BTN_EN1 76
128
     #define BTN_EN1 76
129
     #define BTN_EN2 77
129
     #define BTN_EN2 77
130
-    #define BTN_ENC 78  //the click
131
 
130
 
132
     #define BLEN_C 2
131
     #define BLEN_C 2
133
     #define BLEN_B 1
132
     #define BLEN_B 1
134
     #define BLEN_A 0
133
     #define BLEN_A 0
134
+    #define BTN_ENC 78
135
 
135
 
136
     #define SD_DETECT_PIN 81 // Ramps doesn't use this
136
     #define SD_DETECT_PIN 81 // Ramps doesn't use this
137
 
137
 
179
   //The encoder and click button
179
   //The encoder and click button
180
   #define BTN_EN1 85
180
   #define BTN_EN1 85
181
   #define BTN_EN2 84
181
   #define BTN_EN2 84
182
-  #define BTN_ENC 83  //the click switch
182
+  #define BTN_ENC 83
183
 
183
 
184
   #define SD_DETECT_PIN -1 // Pin 72 if using easy adapter board
184
   #define SD_DETECT_PIN -1 // Pin 72 if using easy adapter board
185
 
185
 

+ 1
- 1
Marlin/pins_RAMPS_14.h View File

256
       //The encoder and click button
256
       //The encoder and click button
257
       #define BTN_EN1 40
257
       #define BTN_EN1 40
258
       #define BTN_EN2 63
258
       #define BTN_EN2 63
259
-      #define BTN_ENC 59  //the click switch
259
+      #define BTN_ENC 59
260
       //not connected to a pin
260
       //not connected to a pin
261
       #define SD_DETECT_PIN 49
261
       #define SD_DETECT_PIN 49
262
 
262
 

+ 1
- 1
Marlin/pins_ULTIMAIN_2.h View File

89
 //buttons are directly attached
89
 //buttons are directly attached
90
 #define BTN_EN1 40
90
 #define BTN_EN1 40
91
 #define BTN_EN2 41
91
 #define BTN_EN2 41
92
-#define BTN_ENC 19  //the click
93
 
92
 
94
 #define BLEN_C 2
93
 #define BLEN_C 2
95
 #define BLEN_B 1
94
 #define BLEN_B 1
96
 #define BLEN_A 0
95
 #define BLEN_A 0
96
+#define BTN_ENC 19
97
 
97
 
98
 #define SD_DETECT_PIN 39
98
 #define SD_DETECT_PIN 39

Loading…
Cancel
Save