34 lines
No EOL
1.2 KiB
INI
34 lines
No EOL
1.2 KiB
INI
; PlatformIO Project Configuration File for Adafruit.IO WipperSnapper
|
|
;
|
|
; Please visit documentation for the other options and examples
|
|
; https://docs.platformio.org/page/projectconf.html
|
|
|
|
[platformio]
|
|
description = "Adafruit.IO WipperSnapper"
|
|
default_envs = featheresp32v2, featheresp32s2
|
|
|
|
; Common WipperSnapper Build Environment
|
|
; https://docs.platformio.org/en/latest/projectconf/section_env.html
|
|
[env]
|
|
framework = arduino
|
|
monitor_speed = 115200
|
|
lib_compat_mode = strict
|
|
lib_deps =
|
|
adafruit/Adafruit TinyUSB Library@^1.10.3
|
|
lib_extra_dirs = ~/Documents/Arduino/libraries
|
|
|
|
; WipperSnapper local build environment for Adafruit Feather ESP32 v2
|
|
[env:featheresp32v2]
|
|
platform = https://github.com/platformio/platform-espressif32.git
|
|
monitor_filters = time, esp32_exception_decoder, colorize
|
|
board = adafruit_feather_esp32_v2
|
|
build_flags = -D ARDUINO_ADAFRUIT_FEATHER_ESP32_V2
|
|
upload_port = /dev/cu.usbserial-10
|
|
monitor_port = /dev/cu.usbserial-10
|
|
|
|
; WipperSnapper local build environment for Adafruit Feather ESP32-S2
|
|
[env:featheresp32s2]
|
|
platform = espressif32
|
|
board = featheresp32-s2
|
|
build_flags = -D ARDUINO_ADAFRUIT_FEATHER_ESP32S2
|
|
monitor_filters = time, esp32_exception_decoder, colorize |