Compare commits

..

7 Commits

Author SHA1 Message Date
Just Call Me Koko
1cfc3c1f74 Merge pull request #660 from justcallmekoko/develop
Develop
2025-02-07 16:05:39 -05:00
Just Call Me Koko
1bd452ed77 Comment board definitions 2025-02-07 15:47:38 -05:00
Just Call Me Koko
19423871a8 Update shop link 2025-02-07 15:40:41 -05:00
Just Call Me Koko
15faac8cfe Fix status LED for bluetooth stuff 2025-02-07 15:39:28 -05:00
Just Call Me Koko
c2fb967e8b Merge pull request #659 from justcallmekoko/master
Master to develop
2025-02-07 14:52:34 -05:00
Just Call Me Koko
d6f17e7566 Merge pull request #657 from justcallmekoko/StickCPlus-2-port
Stick c plus 2 port
2025-02-06 23:13:00 -05:00
Just Call Me Koko
0eb03ce0a7 Merge pull request #655 from justcallmekoko/master
Merge pull request #654 from justcallmekoko/develop
2025-02-05 16:23:46 -05:00
2 changed files with 44 additions and 12 deletions

View File

@@ -25,4 +25,4 @@ Download the [latest release](https://github.com/justcallmekoko/ESP32Marauder/re
Check out the project [wiki](https://github.com/justcallmekoko/ESP32Marauder/wiki) for a full overview of the ESP32 Marauder
# For Sale Now
You can buy the ESP32 Marauder using [this link](https://www.tindie.com/products/justcallmekoko/esp32-marauder/)
You can buy the ESP32 Marauder using [this link](https://www.justcallmekokollc.com)

View File

@@ -918,23 +918,23 @@ bool WiFiScan::shutdownBLE() {
pBLEScan->clearResults();
NimBLEDevice::deinit();
#ifdef MARAUDER_FLIPPER
flipper_led.offLED();
#elif defined(XIAO_ESP32_S3)
xiao_led.offLED();
#elif defined(MARAUDER_M5STICKC)
stickc_led.offLED();
#else
led_obj.setMode(MODE_OFF);
#endif
this->ble_initialized = false;
return true;
}
else {
return false;
}
#ifdef MARAUDER_FLIPPER
flipper_led.offLED();
#elif defined(XIAO_ESP32_S3)
xiao_led.offLED();
#elif defined(MARAUDER_M5STICKC)
stickc_led.offLED();
#else
led_obj.setMode(MODE_OFF);
#endif
#endif
return true;
@@ -2712,6 +2712,17 @@ void WiFiScan::RunSourApple(uint8_t scan_mode, uint16_t color) {
#endif
this->ble_initialized;
#ifdef MARAUDER_FLIPPER
flipper_led.sniffLED();
#elif defined(XIAO_ESP32_S3)
xiao_led.sniffLED();
#elif defined(MARAUDER_M5STICKC)
stickc_led.sniffLED();
#else
led_obj.setMode(MODE_SNIFF);
#endif
#endif
}
@@ -2747,6 +2758,16 @@ void WiFiScan::RunSwiftpairSpam(uint8_t scan_mode, uint16_t color) {
#endif
this->ble_initialized;
#ifdef MARAUDER_FLIPPER
flipper_led.attackLED();
#elif defined(XIAO_ESP32_S3)
xiao_led.attackLED();
#elif defined(MARAUDER_M5STICKC)
stickc_led.attackLED();
#else
led_obj.setMode(MODE_ATTACK);
#endif
#endif
}
@@ -2864,6 +2885,17 @@ void WiFiScan::RunBluetoothScan(uint8_t scan_mode, uint16_t color)
pBLEScan->start(0, scanCompleteCB, false);
Serial.println("Started BLE Scan");
this->ble_initialized = true;
#ifdef MARAUDER_FLIPPER
flipper_led.sniffLED();
#elif defined(XIAO_ESP32_S3)
xiao_led.sniffLED();
#elif defined(MARAUDER_M5STICKC)
stickc_led.sniffLED();
#else
led_obj.setMode(MODE_SNIFF);
#endif
initTime = millis();
#endif
}