diff options
| author | EnricoGuccii <partyka.003@proton.me> | 2026-05-29 23:34:00 +0200 |
|---|---|---|
| committer | EnricoGuccii <partyka.003@proton.me> | 2026-05-29 23:34:00 +0200 |
| commit | d3b283c69e9cf5ac6fe18c25be77a9b0488b9454 (patch) | |
| tree | b39c0bda024eb053a0daab7b938be72a7d3e470e /platformio.ini | |
| parent | 4bd0a060d100c7fb9ad657c939b954b081b62016 (diff) | |
new file structure, and buzzer removed
Diffstat (limited to 'platformio.ini')
| -rw-r--r-- | platformio.ini | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..a27f556 --- /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:lolin_s2_mini]
+platform = espressif32
+board = lolin_s2_mini
+framework = arduino
+monitor_speed = 115200
+
+lib_deps =
+ adafruit/Adafruit GFX Library@^1.12.0
+ adafruit/Adafruit SSD1306@^2.5.13
+
+build_flags =
+ -Iinclude
+ -D ARDUINO_USB_CDC_ON_BOOT=1
+
|