From ab7ea696ca5bcf151325b7912d580d6c81b8f043 Mon Sep 17 00:00:00 2001 From: mattbk Date: Tue, 22 Aug 2023 12:21:21 -0500 Subject: [PATCH] PlatformIO --- vulpes/.gitignore | 6 ++++++ vulpes/.vscode/extensions.json | 10 ++++++++++ vulpes/platformio.ini | 18 ++++++++++++++++++ 3 files changed, 34 insertions(+) create mode 100644 vulpes/.gitignore create mode 100644 vulpes/.vscode/extensions.json create mode 100644 vulpes/platformio.ini diff --git a/vulpes/.gitignore b/vulpes/.gitignore new file mode 100644 index 0000000..3d6ed9d --- /dev/null +++ b/vulpes/.gitignore @@ -0,0 +1,6 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch +*/config.h \ No newline at end of file diff --git a/vulpes/.vscode/extensions.json b/vulpes/.vscode/extensions.json new file mode 100644 index 0000000..080e70d --- /dev/null +++ b/vulpes/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "platformio.platformio-ide" + ], + "unwantedRecommendations": [ + "ms-vscode.cpptools-extension-pack" + ] +} diff --git a/vulpes/platformio.ini b/vulpes/platformio.ini new file mode 100644 index 0000000..a299f08 --- /dev/null +++ b/vulpes/platformio.ini @@ -0,0 +1,18 @@ +; 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:esp32doit-devkit-v1] +platform = espressif32 +board = esp32doit-devkit-v1 +framework = arduino +monitor_speed = 115200 +lib_deps = + me-no-dev/AsyncTCP@^1.1.1 + me-no-dev/ESP Async WebServer@^1.2.3