diff options
author | Christian Segundo | 2023-04-04 18:33:04 +0200 |
---|---|---|
committer | Christian Segundo | 2023-04-04 18:33:04 +0200 |
commit | 1fd97b74dce8318d9d0d7367896dbe3b21823d65 (patch) | |
tree | a9cb7def5ca73785d51be69ef461c84194d9064c /platformio.ini | |
download | ds18x20-exporter-1fd97b74dce8318d9d0d7367896dbe3b21823d65.tar.gz |
first commit
Diffstat (limited to 'platformio.ini')
-rw-r--r-- | platformio.ini | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..49676a8 --- /dev/null +++ b/platformio.ini @@ -0,0 +1,19 @@ +[env] +platform = espressif32 +framework = espidf +monitor_speed = 115200 +build_flags = + -DWIFI_SSID="None" + -DWIFI_PASS="XXXX" + -DPUSH_GATEWAY_HOST="192.168.0.2" + -DPUSH_GATEWAY_PORT="30091" +lib_compat_mode = off +lib_deps = + ; for https://github.com/UncleRus/esp-idf-lib/tree/master/components/ds18x20 + lbernstone/UncleRus@^1.0.1 + +[env:nodemcu-32s] +board = nodemcu-32s + +[env:lolin_d32] +board = lolin_d32 |