From 91045b40fcf492c195b2fdda387701294517a189 Mon Sep 17 00:00:00 2001 From: Mountain-Eagle Date: Mon, 22 Aug 2022 07:48:55 +1000 Subject: [PATCH] Add files via upload --- .gitignore | 28 +++++----------------------- platformio.ini | 20 ++++++++++++++++++++ 2 files changed, 25 insertions(+), 23 deletions(-) create mode 100644 platformio.ini diff --git a/.gitignore b/.gitignore index a1c2a23..89cc49c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,5 @@ -# Compiled class file -*.class - -# Log file -*.log - -# BlueJ files -*.ctxt - -# Mobile Tools for Java (J2ME) -.mtj.tmp/ - -# Package Files # -*.jar -*.war -*.nar -*.ear -*.zip -*.tar.gz -*.rar - -# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml -hs_err_pid* +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..1ab63ae --- /dev/null +++ b/platformio.ini @@ -0,0 +1,20 @@ +; 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:esp8266] +platform = espressif8266 +board = esp12e +framework = arduino +lib_deps = + 256dpi/MQTT@^2.5.0 + plapointe6/HAMqttDevice@^1.0.0 + tzapu/WiFiManager@^0.16.0 + bblanchon/ArduinoJson@^6.18.5 +