30 lines
871 B
INI
30 lines
871 B
INI
; PlatformIO Project Configuration File
|
|
;
|
|
; Build options: build flags, source filter, extra scripting
|
|
; Upload options: custom port, speed and extra flags
|
|
; Library options: dependencies, extra library storages
|
|
;
|
|
; Please visit documentation for the other options and examples
|
|
; http://docs.platformio.org/page/projectconf.html
|
|
|
|
[env:nano32]
|
|
platform = espressif32
|
|
framework = espidf
|
|
board = nano32
|
|
build_flags = -DCONFIG_WIFI_SSID=\"ESP_AP\" -DCONFIG_WIFI_PASSWORD=\"MYPASS\"
|
|
monitor_speed = 115200
|
|
|
|
[env:esp wrover kit]
|
|
platform = espressif32
|
|
framework = espidf
|
|
board = esp-wrover-kit
|
|
build_flags = -DCONFIG_WIFI_SSID=\"ESP_AP\" -DCONFIG_WIFI_PASSWORD=\"MYPASS\"
|
|
monitor_speed = 115200
|
|
|
|
[env:esp32dev]
|
|
platform = espressif32
|
|
framework = espidf
|
|
board = esp32dev
|
|
build_flags = -DCONFIG_WIFI_SSID=\"ESP_AP\" -DCONFIG_WIFI_PASSWORD=\"MYPASS\"
|
|
monitor_speed = 115200
|