; 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 ; Settings shared by every environment below. ; `-I../shared/include` lets us #include "temp_color.h" / "secrets.h" ; from the home-automation/shared/include/ folder. [env] build_flags = -I../shared/include [env:esp32dev] platform = espressif32 board = esp32dev framework = arduino monitor_speed = 115200 upload_port = /dev/ttyUSB0 monitor_port = /dev/ttyUSB0 upload_speed = 115200 lib_deps = adafruit/DHT sensor library@^1.4.6 adafruit/Adafruit Unified Sensor@^1.1.14 bblanchon/ArduinoJson@^7.0.4 ; Native environment — runs unit tests on your computer, no hardware needed. ; Usage: pio test -e native [env:native] platform = native test_filter = test_native