lilygo-t5-template/platformio.ini
Кобелев Андрей Андреевич c7636ebd6f Не прошло и 5 лет
2024-02-07 11:51:47 +03:00

35 lines
983 B
INI

; 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
upload_speed = 115200
monitor_speed = 115200
lib_deps =
Wire
gyverlibs/GyverNTP@^1.3.1
https://github.com/vroland/epdiy.git
build_flags =
-DBOARD_HAS_PSRAM
-DCONFIG_EPD_DISPLAY_TYPE_ED047TC1
-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}
lib_deps =
${common_env_data.lib_deps}
bblanchon/ArduinoJson@^7.0.3
build_flags = ${common_env_data.build_flags}