Commit initial : paramétrage du projet

This commit is contained in:
Alexis Fourmaux 2026-05-30 16:59:29 +02:00
commit cca20d6d1a
3 changed files with 40 additions and 0 deletions

5
.gitignore vendored Normal file
View file

@ -0,0 +1,5 @@
.pio
.vscode/.browse.c_cpp.db*
.vscode/c_cpp_properties.json
.vscode/launch.json
.vscode/ipch

10
.vscode/extensions.json vendored Normal file
View file

@ -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"
]
}

25
platformio.ini Normal file
View file

@ -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