DarkEmergency-Timer/Software/platformio.ini

62 lines
1.7 KiB
INI
Raw Normal View History

2021-04-10 01:05:48 +02: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
[platformio]
extra_configs =
wifi_credentials.ini
2022-07-15 13:36:29 +02:00
[env:de-timer]
platform = espressif8266
framework = arduino
board = d1_mini
2022-05-15 22:52:50 +02:00
upload_protocol = esptool
upload_speed = 921600
;upload_port = 10.0.1.48
;upload_protocol = espota
;upload_flags =
; --auth=${wifi_cred.admin_password}
build_flags=
!python git_rev_macro.py
2023-04-12 22:43:25 +02:00
-DATOMIC_FS_UPDATE
-DFEATURE_ENABLE_WIFI_CLIENT
2023-04-12 22:56:36 +02:00
;-DFEATURE_ENABLE_LORA
2022-05-15 22:51:42 +02:00
;-DCAPTIVE
2023-04-13 21:04:29 +02:00
-DWIFI_AP_IP_GW=10,0,0,1
-DADMIN_PASSWORD=${wifi_cred.admin_password}
-DWIFI_CLIENT_SSID=${wifi_cred.wifi_client_ssid}
-DWIFI_CLIENT_PASSWORD=${wifi_cred.wifi_client_password}
2023-04-12 22:43:25 +02:00
-DWIFI_AP_SSID=${wifi_cred.wifi_ap_ssid}
-DWIFI_AP_PASSWORD=${wifi_cred.wifi_ap_password}
-DDEVICE_NAME='"Dark Emergency Timer"'
-DFACTION_1_NAME='"GOF"'
2023-04-13 21:04:29 +02:00
-DFACTION_2_NAME='"KGG"'
-DFACTION_3_NAME='"MILIZ"'
;build_type = debug
board_build.filesystem = littlefs
board_build.ldscript = eagle.flash.4m1m.ld
extra_scripts = post:prepare_littlefs.py
monitor_filters = esp8266_exception_decoder
monitor_speed = 115200
lib_deps =
;xreef/EByte LoRa E220 library@^1.0.6 ; made Lib local, due to changes for I2C-controller M0,M1-Pins
sstaub/Ticker@^4.4.0
2023-02-15 20:13:36 +01:00
robtillaart/PCF8574 @ ^0.3.7
adafruit/Adafruit INA219 @ ^1.1.1
2023-02-15 20:13:36 +01:00
akj7/TM1637 Driver @ ^2.1.2
me-no-dev/ESPAsyncTCP @ ^1.2.2
robtillaart/I2C_EEPROM @ ^1.5.2
sandeepmistry/LoRa @ ^0.8.0
bblanchon/ArduinoJson @ ^6.19.4