diff --git a/README.md b/README.md
index 62d1e0b..58ea531 100644
--- a/README.md
+++ b/README.md
@@ -63,7 +63,7 @@ You can check out the marauder article written [here](https://www.hackster.io/ne
- Save PCAP files to SD card
# Do It Yourself
-
+

## Hardware
This project requires the following hardware in order to work:
- Any ESP32 Development Board
diff --git a/esp32_marauder/Display.h b/esp32_marauder/Display.h
index 069916f..6ee68a6 100644
--- a/esp32_marauder/Display.h
+++ b/esp32_marauder/Display.h
@@ -13,8 +13,8 @@
#include
-#define TFT_SHIELD
-//#define TFT_DIY
+//#define TFT_SHIELD
+#define TFT_DIY
#define SCREEN_WIDTH 240
#define SCREEN_HEIGHT 320
@@ -59,7 +59,7 @@ class Display
TFT_eSPI tft = TFT_eSPI();
TFT_eSprite img = TFT_eSprite(&tft);
TFT_eSPI_Button key[BUTTON_ARRAY_LEN];
- String version_number = "v0.6.6";
+ String version_number = "v0.6.7";
bool printing = false;
bool loading = false;
diff --git a/esp32_marauder/LedInterface.cpp b/esp32_marauder/LedInterface.cpp
index 8740f22..cd5eba6 100644
--- a/esp32_marauder/LedInterface.cpp
+++ b/esp32_marauder/LedInterface.cpp
@@ -6,12 +6,13 @@ LedInterface::LedInterface() {
void LedInterface::RunSetup() {
Serial.println("Setting neopixel to black...");
+ strip.setBrightness(0);
strip.begin();
- strip.setBrightness(50);
strip.setPixelColor(0, strip.Color(0, 0, 0));
strip.show();
delay(100);
- strip.setPixelColor(0, strip.Color(255, 0, 0));
+ strip.setBrightness(50);
+ strip.setPixelColor(0, strip.Color(0, 0, 0));
strip.show();
this->initTime = millis();
}
diff --git a/pictures/diy.png b/pictures/diy.png
new file mode 100644
index 0000000..6b88b7d
Binary files /dev/null and b/pictures/diy.png differ