35 lines
1.3 KiB
INI
35 lines
1.3 KiB
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
|
|
|
|
[env:esp32dev]
|
|
platform = espressif32
|
|
board = esp32dev
|
|
framework = arduino
|
|
# Libraries hier eintragen:
|
|
lib_deps =
|
|
knolleary/PubSubClient @ ^2.8
|
|
arduino-libraries/NTPClient @ ^3.2.1
|
|
bblanchon/ArduinoJson @ ^6.21.3
|
|
# SERIAL MONITOR EINSTELLUNGEN:
|
|
monitor_speed = 115200 # Baudrate
|
|
monitor_port = COM9 # Port festlegen
|
|
monitor_filters = # Filter aktivieren
|
|
colorize # Farbige Ausgabe
|
|
esp32_exception_decoder # ESP32 Fehler dekodieren
|
|
log2file # In Datei speichern
|
|
time # Zeitstempel
|
|
default # Standardfilter
|
|
monitor_rts = 0 # RTS deaktivieren
|
|
monitor_dtr = 0 # DTR deaktivieren
|
|
monitor_echo = yes # Eingaben anzeigen
|
|
monitor_raw = no # Raw-Mode
|
|
monitor_encoding = utf8 # Encoding
|
|
monitor_rx_timeout = 3 # Timeout in Sekunden
|