12345678910111213141516171819202122232425262728293031323334 |
- ; 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
- [platformio]
- src_dir = ./
- [env]
- framework = arduino
- lib_deps =
- makuna/RTC@^2.3.6
- adafruit/Adafruit BME280 Library@^2.2.2
- https://github.com/hjd1964/OneWire.git
- https://github.com/hjd1964/Arduino-DS1820-Temperature-Library.git
- adafruit/Adafruit BMP280 Library @ ^2.6.8
- [env:blackpill]
- platform = ststm32
- board = genericSTM32F411CE
- upload_protocol = dfu
- build_flags =
- -D PIO_FRAMEWORK_ARDUINO_ENABLE_CDC
- -D USBCON
- -D HAL_PCD_MODULE_ENABLED
- monitor_dtr = 1
- monitor_filters =
- colorize
- send_on_enter
|