lilygo-t5-template/platformio.ini

35 lines
983 B
INI
Raw Normal View History

2022-10-22 22:33:01 +03: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
; https://docs.platformio.org/page/projectconf.html
[common_env_data]
framework = arduino
board_build.f_cpu = 240000000L
2024-02-07 11:51:47 +03:00
upload_speed = 115200
2022-10-22 22:33:01 +03:00
monitor_speed = 115200
2024-02-07 11:51:47 +03:00
lib_deps =
Wire
gyverlibs/GyverNTP@^1.3.1
https://github.com/vroland/epdiy.git
build_flags =
-DBOARD_HAS_PSRAM
-DCONFIG_EPD_DISPLAY_TYPE_ED047TC1
2022-10-22 22:33:01 +03:00
-DCONFIG_EPD_BOARD_REVISION_LILYGO_T5_47
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = ${common_env_data.framework}
upload_speed = ${common_env_data.upload_speed}
monitor_speed = ${common_env_data.monitor_speed}
2024-02-07 11:51:47 +03:00
lib_deps =
${common_env_data.lib_deps}
bblanchon/ArduinoJson@^7.0.3
2022-10-22 22:33:01 +03:00
build_flags = ${common_env_data.build_flags}