ESP_Solar_Monitor/platformio.ini

34 lines
850 B
INI
Raw Normal View History

2022-08-21 23:32:23 +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
[env:ttgo-t-beam]
platform = espressif32
board = ttgo-t-beam
framework = arduino
2022-08-22 01:54:57 +02:00
lib_deps =
knolleary/PubSubClient@^2.8
extentsoftware/TBeamPower@^2.0.4
peterus/esp-logger @ 0.0.1
2022-09-03 05:04:57 +02:00
bblanchon/ArduinoJson@^6.19.4
olikraus/U8g2@^2.33.12
2022-08-22 01:54:57 +02:00
monitor_speed = 115200
2022-09-04 23:40:03 +02:00
[env:esp8266]
platform = espressif8266
board = esp12e
framework = arduino
lib_deps =
knolleary/PubSubClient@^2.8
peterus/esp-logger @ 0.0.1
bblanchon/ArduinoJson@^6.19.4
olikraus/U8g2@^2.33.12
monitor_speed = 115200
2022-09-05 03:22:06 +02:00