25 lines
636 B
INI
25 lines
636 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
|
|
|
|
[env]
|
|
monitor_speed = 115200
|
|
|
|
[env:ESP8266]
|
|
platform = espressif8266
|
|
board = esp01_1m
|
|
framework = arduino
|
|
upload_resetmethod = nodemcu
|
|
build_flags = -D ESP8266_BOARD
|
|
|
|
[env:ESP32s]
|
|
platform = espressif32
|
|
board = node32s
|
|
framework = arduino
|
|
build_flags = -D ESP32n_BOARDder |