43 lines
978 B
INI
43 lines
978 B
INI
|
; PlatformIO Project Configuration File
|
||
|
;
|
||
|
; Build options: build flags, source filter
|
||
|
; Upload options: custom upload port, speed and extra flags
|
||
|
; Library options: dependencies, extra library storages
|
||
|
; Advanced options: extra scripting
|
||
|
;
|
||
|
; Please visit documentation for the other options and examples
|
||
|
; https://docs.platformio.org/page/projectconf.html
|
||
|
|
||
|
[platformio]
|
||
|
extra_configs =
|
||
|
wifi_credentials.ini
|
||
|
|
||
|
[env:d1_mini]
|
||
|
platform = espressif8266
|
||
|
board = d1_mini
|
||
|
framework = arduino
|
||
|
|
||
|
|
||
|
;upload_port = 192.168.0.20
|
||
|
;upload_protocol = espota
|
||
|
;upload_flags =
|
||
|
; --auth="chainlube"
|
||
|
upload_protocol=esptool
|
||
|
|
||
|
build_flags =
|
||
|
;-DDEBUG
|
||
|
-fexceptions
|
||
|
|
||
|
build_unflags = -fno-exceptions
|
||
|
build_type = debug
|
||
|
board_build.filesystem = littlefs
|
||
|
|
||
|
monitor_filters = esp8266_exception_decoder
|
||
|
monitor_speed = 115200
|
||
|
|
||
|
board_build.ldscript = eagle.flash.4m3m.ld
|
||
|
lib_ldf_mode = deep
|
||
|
lib_deps =
|
||
|
olikraus/U8g2 @ ^2.28.8
|
||
|
joaolopesf/RemoteDebug @ ^2.1.2
|
||
|
fastled/FastLED @ ^3.5.0
|