Files
arduino/platformio.ini

51 lines
1.1 KiB
INI
Raw Normal View History

2024-04-20 18:29:40 +07:00
; 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:esp32-c3]
2024-04-20 18:29:40 +07:00
platform = espressif32
board = esp32-c3-devkitm-1
framework = arduino
2024-04-23 05:59:58 +07:00
build_flags = !echo '-D ARDUINO_USB_CDC_ON_BOOT=1 -D ARDUINO_USB_MODE=1 -D GIT_VERSION=\\"'$(git describe --tags --always --dirty)'\\"'
2024-04-20 18:29:40 +07:00
board_build.partitions = partitions.csv
2024-04-21 06:10:05 +07:00
monitor_speed = 115200
2024-04-20 18:29:40 +07:00
lib_deps =
aglib=symlink://../arduino
EEPROM
WebServer
ESPmDNS
FS
SPIFFS
HTTPClient
WiFiClientSecure
Update
DNSServer
monitor_filters = time
[env:esp8266]
platform = espressif8266
board = d1_mini
framework = arduino
monitor_speed = 115200
lib_deps =
aglib=symlink://../arduino
EEPROM
ESP8266HTTPClient
ESP8266WebServer
DNSServer
2024-04-20 18:29:40 +07:00
2024-04-22 19:52:13 +07:00
monitor_filters = time
2024-04-20 18:29:40 +07:00
[platformio]
2024-04-21 09:36:46 +07:00
src_dir = examples/OneOpenAir
; src_dir = examples/BASIC
; src_dir = examples/TestCO2
; src_dir = examples/TestPM
; src_dir = examples/TestSht