commit a675495083d88e99a748c068a097765dde3212a0 Author: hans-jurgen Date: Tue May 9 18:48:39 2023 +0200 Ă„nderung von 2023-05-09 diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..58c282a --- /dev/null +++ b/platformio.ini @@ -0,0 +1,65 @@ +; 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] +platform = espressif8266 +board = d1 +framework = arduino +monitor_port = /dev/ttyUSB0 +monitor_speed = 74800 +monitor_filters = time +board_build.filesystem = littlefs +lib_deps = + knolleary/PubSubClient @ 2.8 + adafruit/Adafruit HTU21DF Library @ 1.0.5 + adafruit/Adafruit BMP280 Library @ 2.6.6 + wollewald/ADS1115_WE @ 1.4.3 + adafruit/Adafruit MCP9808 Library @ 2.0.0 + +build_flags = + -DTEMPTEST33=1 + -DNOBATT=1 + -DMaxErrCount=30 + -DMQTT=0 + + + +[env:debug] ; Entwicklungssystem +build_flags = ${env.build_flags} + -DDEBUG=0 + -DNOADS=0 + -DNAME=\"WETTERSTATIONEPPINGEN\" + -DSTASSID=\"St.-Peters-Gasse-Post\" + -DSTAPSK=\"1952994784599318\" + -DGATEWAY=\"192.168.127.1\" + -DDNS=\"192.168.127.1\" + -DKMYIP=\"192.168.127.48\" + -Dmqtt_server=\"hjkmqtt.dedyn.io\" + -Dmqtt_port=8883 + -DTERROR=5 + -DTLOWBATT=60 + -DTINTERVAL=1 + +[env:release] ; Produktivsystem: +build_flags = ${env.build_flags} + -DDEBUG=0 + -DEMAIL=\"koerner.c.m@gmail.com\" + -DNAME=\"WETTERSTATIONMARCEL\" + -DSTASSID=\"EasyBox-838169\" + -DSTAPSK=\"RcZmua6Xv4R4V5Kf\" + -DGATEWAY=\"192.168.2.1\" + -DDNS=\"192.168.2.1\" + -DKMYIP=\"192.168.2.81\" + -Dmqtt_server=\"hjkmqtt.dedyn.io\" + -Dmqtt_port=8883 + -DTERROR=20 + -DTLOWBATT=60 + -DTINTERVAL=10 +