-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
66 lines (62 loc) · 2.01 KB
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
; 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]
src_dir = hardware/src
data_dir = hardware/data
[common]
; Common library deps
lib_deps =
https://github.com/me-no-dev/ESPAsyncWebServer.git
https://github.com/espressif/arduino-esp32.git
adafruit/Adafruit NeoPixel
ArduinoJson
https://github.com/adafruit/Adafruit_AW9523.git
https://github.com/adafruit/Adafruit_BusIO.git
https://github.com/adafruit/Adafruit-VC0706-Serial-Camera-Library.git
https://github.com/adafruit/Adafruit_SCD30.git
https://github.com/256dpi/arduino-mqtt.git
lib_extra_dirs =
;/Users/jrundquist/Documents/Arduino/libraries
;/Users/jrundquist/Library/Arduino15/packages/esp32/hardware/esp32/2.0.5/libraries
lib_ignore =
;/Users/jrundquist/Documents/Arduino/libraries/WiFi
[env:adafruit_feather_esp32_v2]
framework = arduino
monitor_speed = 115200
platform = espressif32
board = adafruit_feather_esp32_v2
board_build.filesystem = littlefs
board_build.partitions = hardware/partitions_8mb.csv
; include common deps plus specific deps
lib_deps =
${common.lib_deps}
build_flags=
-DNEOPIXEL_NUM=1
[env:adafruit_feather_esp32s2_tft]
framework = arduino
monitor_speed = 115200
platform = espressif32
board = adafruit_feather_esp32s2_tft
board_build.filesystem = littlefs
board_build.partitions = hardware/partitions.csv
; include common deps plus specific deps
lib_deps =
${common.lib_deps}
https://github.com/adafruit/Adafruit_LC709203F.git
https://github.com/adafruit/Adafruit-ST7735-Library.git
[env:adafruit_metro_esp32s2]
framework = arduino
monitor_speed = 115200
platform = espressif32
board = adafruit_metro_esp32s2
board_build.filesystem = littlefs
board_build.partitions = partitions.csv
lib_deps =
${common.lib_deps}