platformio.ini 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. [env:ttgo-t-beam-AXP2101-v1_2]
  25. board = ttgo-t-beam
  26. build_flags = -Werror -Wall -DTTGO_T_Beam_V1_2
  27. [env:ttgo-t-beam-v1]
  28. board = ttgo-t-beam
  29. build_flags = -Werror -Wall -DTTGO_T_Beam_V1_0
  30. [env:ttgo-t-beam-v0_7]
  31. board = ttgo-t-beam
  32. build_flags = -Werror -Wall -DTTGO_T_Beam_V0_7
  33. [env:uno]
  34. platform = atmelavr
  35. board = uno
  36. framework = arduino