platformio.ini 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ; PlatformIO Project Configuration File
  2. ;
  3. ; Build options: build flags, source filter
  4. ; Upload options: custom upload port, speed and extra flags
  5. ; Library options: dependencies, extra library storages
  6. ; Advanced options: extra scripting
  7. ;
  8. ; Please visit documentation for the other options and examples
  9. ; https://docs.platformio.org/page/projectconf.html
  10. [platformio]
  11. default_envs = ttgo-t-beam-v1
  12. [env]
  13. platform = espressif32 @ 6.7.0
  14. framework = arduino
  15. lib_ldf_mode = deep+
  16. monitor_speed = 115200
  17. monitor_filters = esp32_exception_decoder
  18. lib_deps =
  19. peterus/esp-logger @ 1.0.0
  20. adafruit/Adafruit SSD1306
  21. adafruit/Adafruit GFX Library
  22. mikalhart/TinyGPSPlus
  23. lewisxhe/XPowersLib
  24. jgromes/RadioLib
  25. [env:ttgo-t-beam-AXP2101-v1_2]
  26. board = ttgo-t-beam
  27. build_flags = -Werror -Wall -DTTGO_T_Beam_V1_2
  28. [env:ttgo-t-beam-v1]
  29. board = ttgo-t-beam
  30. build_flags = -Werror -Wall -DTTGO_T_Beam_V1_0
  31. [env:ttgo-t-beam-v0_7]
  32. board = ttgo-t-beam
  33. build_flags = -Werror -Wall -DTTGO_T_Beam_V0_7
  34. [env:uno]
  35. platform = atmelavr
  36. board = uno
  37. framework = arduino