mirror of
https://github.com/colonelpanichacks/flock-you.git
synced 2026-06-09 13:51:53 -07:00
3606f1f812
Complete rewrite of standalone Flock-You firmware: - Remove WiFi promiscuous mode, all detection is now BLE-only - Add web dashboard served on AP "flockyou" at 192.168.4.1 - GPS wardriving via phone browser Geolocation API - SPIFFS session persistence with auto-save every 60s - Prior session tab (PREV) survives reboots - KML export for Google Earth (current + prior session) - JSON/CSV export with GPS coordinates - Serial JSON output for Flask live ingestion - Crow call boot sounds with detection/heartbeat alerts - 200 unique device storage with FreeRTOS mutex - Flask app: add KML import endpoint, GPS data handling - Update platformio.ini with AsyncWebServer, ArduinoJson 7, SPIFFS partition - Rewrite README to reflect current functionality
31 lines
709 B
INI
31 lines
709 B
INI
[env:xiao_esp32s3]
|
|
platform = espressif32@^6.3.0
|
|
board = seeed_xiao_esp32s3
|
|
framework = arduino
|
|
monitor_speed = 115200
|
|
upload_speed = 921600
|
|
|
|
; Build options
|
|
build_flags =
|
|
-DCORE_DEBUG_LEVEL=0
|
|
-DARDUINO_USB_CDC_ON_BOOT=1
|
|
-DBOARD_HAS_PSRAM
|
|
-mfix-esp32-psram-cache-issue
|
|
-DCONFIG_BT_NIMBLE_ENABLED=1
|
|
|
|
; Libraries
|
|
lib_deps =
|
|
h2zero/NimBLE-Arduino@^1.4.0
|
|
mathieucarbou/ESP Async WebServer@^3.0.6
|
|
bblanchon/ArduinoJson@^7.0.4
|
|
|
|
; Board configuration
|
|
board_build.arduino.memory_type = qio_opi
|
|
board_build.partitions = partitions.csv
|
|
board_build.filesystem = spiffs
|
|
|
|
; USB CDC configuration
|
|
board_build.f_cpu = 240000000L
|
|
board_build.f_flash = 80000000L
|
|
board_build.flash_mode = qio
|