commit cca20d6d1a87c0dea9f65e91742273ab1699c3d6 Author: Alexis Fourmaux Date: Sat May 30 16:59:29 2026 +0200 Commit initial : paramétrage du projet 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