We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b37d58 commit 0710955Copy full SHA for 0710955
esp8266_deauther/esp8266_deauther.ino
@@ -13,6 +13,7 @@
13
14
#define resetPin 4 /* <-- comment out or change if you need GPIO 4 for other purposes */
15
//#define USE_DISPLAY /* <-- uncomment that if you want to use the display */
16
+//#define USE_LED16 /* <-- for the Pocket ESP8266 which has a LED on GPIO 16 to indicate if it's running */
17
18
#ifdef USE_DISPLAY
19
#include <Wire.h>
@@ -438,11 +439,10 @@ void resetSettings() {
438
439
440
void setup() {
441
- // for the Pocket WiFi ESP8266
442
- /*
+#ifdef USE_LED16
443
pinMode(16, OUTPUT);
444
digitalWrite(16, LOW);
445
- */
+#endif
446
447
Serial.begin(115200);
448
0 commit comments