2018-10-05 22:41:25 +02: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
|
2021-03-13 21:20:16 +01:00
|
|
|
; https://docs.platformio.org/page/projectconf.html
|
2018-10-05 22:41:25 +02:00
|
|
|
|
|
|
|
[env:esp32]
|
2019-07-17 15:00:41 +02:00
|
|
|
platform = espressif32
|
2018-10-05 22:41:25 +02:00
|
|
|
framework = arduino
|
2021-03-07 15:07:34 +01:00
|
|
|
board = m5stick-c
|
2021-03-13 21:20:16 +01:00
|
|
|
lib_deps =
|
|
|
|
ArduinoJson@^6
|
|
|
|
NimBLE-Arduino
|
|
|
|
AsyncMqttClient@^0.8.2
|
|
|
|
AsyncTCP
|
|
|
|
dwrobel/TrivialKalmanFilter@^1.0.1
|
|
|
|
m5stack/M5StickC@^0.2.0
|
2021-03-07 15:07:34 +01:00
|
|
|
lib_ignore = ESPAsyncTCP, ESP32 BLE Arduino
|
2018-10-05 23:12:45 +02:00
|
|
|
board_build.partitions = partitions_singleapp.csv
|
2021-03-13 21:20:16 +01:00
|
|
|
monitor_speed = 115200
|