* Add vid6608 library * Add vid6608 pin definition (only GB for now) * Try to debug GPIO - does not work * First working version * Trim whitespaces * Add missing library; JSON response, Codeowners * Fix blocking loop in esp8266 * Update language strings * Format inline readme for vid driver * Add example define in my_user_config.h * Clanup changed VS Code config files * Fix duplicated language values in en_GB.h
32 lines
738 B
INI
32 lines
738 B
INI
; 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
|
|
|
|
[platformio]
|
|
default_envs = esp32doit-devkit-v1
|
|
|
|
[env:uno]
|
|
platform = atmelavr
|
|
board = uno
|
|
framework = arduino
|
|
check_tool = cppcheck
|
|
check_src_filters =
|
|
+<src/*>
|
|
+<examples/RandomMove/*>
|
|
|
|
[env:esp32doit-devkit-v1]
|
|
platform = espressif32
|
|
board = esp32doit-devkit-v1
|
|
framework = arduino
|
|
|
|
[env:d1_mini_pro]
|
|
platform = espressif8266
|
|
board = d1_mini_pro
|
|
framework = arduino
|