diff options
| author | user <user@node5.net> | 2023-12-15 14:59:50 +0100 |
|---|---|---|
| committer | user <user@node5.net> | 2023-12-15 14:59:50 +0100 |
| commit | bba3635912b334e17b270907b5b4a1d6dfd4be1f (patch) | |
| tree | bb433c6b9a407cb9f74037b055dc64b2b02de147 /platformio.ini | |
initial commit. clock works + ntp, animations and fade
Diffstat (limited to 'platformio.ini')
| -rw-r--r-- | platformio.ini | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/platformio.ini b/platformio.ini new file mode 100644 index 0000000..34de014 --- /dev/null +++ b/platformio.ini @@ -0,0 +1,26 @@ +; 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 + +[common] +platform = espressif8266 +framework = arduino +lib_deps = + FastLED@3.4.0 + ESP8266WiFi@1.0 + ezTime@0.8.3 + +[env:nodemcuv2] +extends = common +board = nodemcuv2 + +[env:esp01] +extends = common +board = esp01 +board_build.flash_mode = dout |
