diff options
Diffstat (limited to 'martin/door/platformio.ini')
| -rw-r--r-- | martin/door/platformio.ini | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/martin/door/platformio.ini b/martin/door/platformio.ini new file mode 100644 index 0000000..1a3b624 --- /dev/null +++ b/martin/door/platformio.ini | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | ;PlatformIO Project Configuration File | ||
| 2 | ; | ||
| 3 | ; Build options: build flags, source filter | ||
| 4 | ; Upload options: custom upload port, speed and extra flags | ||
| 5 | ; Library options: dependencies, extra library storages | ||
| 6 | ; Advanced options: extra scripting | ||
| 7 | ; | ||
| 8 | ; Please visit documentation for the other options and examples | ||
| 9 | ; https://docs.platformio.org/page/projectconf.html | ||
| 10 | |||
| 11 | [platformio] | ||
| 12 | default_envs = d1_mini | ||
| 13 | |||
| 14 | [common_env_data] | ||
| 15 | lib_deps = | ||
| 16 | |||
| 17 | [env:nodemcuv2] | ||
| 18 | platform = espressif8266 | ||
| 19 | framework = arduino | ||
| 20 | board = nodemcuv2 | ||
| 21 | lib_deps = ${common_env_data.lib_deps} | ||
| 22 | monitor_speed = 9600 | ||
| 23 | |||
| 24 | [env:d1_mini] | ||
| 25 | platform = espressif8266 | ||
| 26 | framework = arduino | ||
| 27 | board = d1_mini | ||
| 28 | lib_deps = ${common_env_data.lib_deps} | ||
| 29 | monitor_speed = 9600 | ||
