From cca20d6d1a87c0dea9f65e91742273ab1699c3d6 Mon Sep 17 00:00:00 2001 From: Alexis Fourmaux Date: Sat, 30 May 2026 16:59:29 +0200 Subject: [PATCH] =?UTF-8?q?Commit=20initial=20:=20param=C3=A9trage=20du=20?= =?UTF-8?q?projet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 5 +++++ .vscode/extensions.json | 10 ++++++++++ platformio.ini | 25 +++++++++++++++++++++++++ 3 files changed, 40 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/extensions.json create mode 100644 platformio.ini diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..89cc49c --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.pio +.vscode/.browse.c_cpp.db* +.vscode/c_cpp_properties.json +.vscode/launch.json +.vscode/ipch diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..080e70d --- /dev/null +++ b/.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/platformio.ini b/platformio.ini new file mode 100644 index 0000000..6ddd65a --- /dev/null +++ b/platformio.ini @@ -0,0 +1,25 @@ +; 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:T3_V1_6_SX1276] +platform = espressif32@6.9.0 +framework = arduino +board = esp32dev +upload_speed = 921600 +monitor_speed = 115200 + +build_flags = + -DT3_V1_6_SX1276 + +lib_deps = + adafruit/Adafruit SSD1306 @ ^2.5.15 + adafruit/Adafruit GFX Library @ ^1.12.1 + adafruit/Adafruit BusIO @ ^1.16.3 + jgromes/RadioLib@6.6.0 \ No newline at end of file