generated from CubeCraft-Creations/Tracehound
24 lines
526 B
INI
24 lines
526 B
INI
|
|
; RemoteRig — ESP32 Camera Node Firmware
|
||
|
|
; Platform: ESP32 (ESP8266 compatible with minor changes)
|
||
|
|
; Framework: Arduino
|
||
|
|
;
|
||
|
|
; Build: pio run
|
||
|
|
; Upload: pio run --target upload
|
||
|
|
; SPIFFS: pio run --target uploadfs
|
||
|
|
; Monitor: pio device monitor
|
||
|
|
|
||
|
|
[env:esp32dev]
|
||
|
|
platform = espressif32
|
||
|
|
board = esp32dev
|
||
|
|
framework = arduino
|
||
|
|
monitor_speed = 115200
|
||
|
|
upload_speed = 921600
|
||
|
|
|
||
|
|
lib_deps =
|
||
|
|
knolleary/PubSubClient @ ^2.8
|
||
|
|
bblanchon/ArduinoJson @ ^7.3
|
||
|
|
|
||
|
|
build_flags =
|
||
|
|
-D CORE_DEBUG_LEVEL=0
|
||
|
|
-D CONFIG_ARDUINO_LOOP_STACK_SIZE=8192
|