config stuff

This commit is contained in:
bdnugget 2025-06-10 01:05:32 +02:00
parent 5cba359881
commit a780ffc918
5 changed files with 37 additions and 0 deletions

3
.vscode/arduino.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"port": "/dev/ttyUSB0"
}

17
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,17 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"~/Arduino/libraries/**"
],
"defines": [],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "linux-clang-x64"
}
],
"version": 4
}

17
platformio.ini Normal file
View File

@ -0,0 +1,17 @@
[env:esp8266]
platform = espressif8266
board = nodemcuv2
framework = arduino
monitor_speed = 9600
src_dir = ESP8266
lib_deps =
ESP8266WiFi
ESP8266HTTPClient
bblanchon/ArduinoJson@^6.21.2
[env:uno]
platform = atmelavr
board = uno
framework = arduino
monitor_speed = 9600
src_dir = Arduino