Add files via upload

This commit is contained in:
Colonel Panic
2025-08-23 14:47:43 -04:00
committed by GitHub
parent d3629c9f6a
commit 0ee2e6c664
7 changed files with 230467 additions and 105 deletions
+28 -2
View File
@@ -87,7 +87,33 @@ static unsigned long last_detection_time = 0;
static unsigned long last_heartbeat = 0;
static NimBLEScan* pBLEScan;
// ============================================================================
// SYSTEM BANNER & DISPLAY
// ============================================================================
static void display_banner(void)
{
printf("\n"
"╔══════════════════════════════════════════════════════════════╗\n"
"║ ║\n"
"║ ███████╗██╗ ██╗ █████╗ ██╗ ██╗██╗ ██╗ ║\n"
"║ ██╔════╝██║ ██║ ██╔══██╗██║ ██╔╝██║ ██╔╝ ║\n"
"║ ███████╗██║ ██║ ███████║█████╔╝ █████╔╝ ║\n"
"║ ╚════██║██║ ██║ ██╔══██║██╔═██╗ ██╔═██╗ ║\n"
"║ ███████║███████╗███████╗██║ ██║██║ ██╗██║ ██╗ ║\n"
"║ ╚══════╝╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝ ║\n"
"║ ║\n"
"║ FLOCK SAFETY DETECTOR - ENHANCED ║\n"
"║ SQUAWK v2.0 ║\n"
"║ ║\n"
"║ 🦅 Multi-Method Detection System 🦅 ║\n"
"║ 📡 WiFi + BLE + MAC + Device Name Detection ║\n"
"║ 🔊 Audio Alerts with Distinct Sound Patterns ║\n"
"║ 🎯 Real-World Device Database Integration ║\n"
"║ 📊 JSON Detection Output with Full Device Info ║\n"
"║ ║\n"
"╚══════════════════════════════════════════════════════════════╝\n\n");
}
// ============================================================================
// AUDIO SYSTEM
@@ -487,7 +513,7 @@ void setup()
Serial.begin(115200);
delay(1000);
display_banner();
// Initialize buzzer
pinMode(BUZZER_PIN, OUTPUT);
@@ -551,4 +577,4 @@ void loop()
pBLEScan->clearResults();
delay(100);
}
}