Skip to content

Commit 41fdac5

Browse files
committed
Merge branch 'release/v1.12.4'
2 parents 3db5cbe + 2ab429d commit 41fdac5

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

examples/arduino-external-libs/platformio.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
[common]
1111
lib_deps =
12+
SPI
1213
Adafruit 9DOF Library
1314
Ethernet
1415

examples/arduino-internal-libs/platformio.ini

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,37 @@
77
; Please visit documentation for the other options and examples
88
; http://docs.platformio.org/page/projectconf.html
99

10+
[common]
11+
lib_deps =
12+
SPI
13+
Ethernet
14+
1015
[env:uno]
1116
platform = atmelavr
1217
framework = arduino
1318
board = uno
19+
lib_deps = ${common.lib_deps}
1420

1521
[env:megaatmega2560]
1622
platform = atmelavr
1723
framework = arduino
1824
board = megaatmega2560
25+
lib_deps = ${common.lib_deps}
1926

2027
[env:nanoatmega328]
2128
platform = atmelavr
2229
framework = arduino
2330
board = nanoatmega328
31+
lib_deps = ${common.lib_deps}
2432

2533
[env:leonardo]
2634
platform = atmelavr
2735
framework = arduino
2836
board = leonardo
37+
lib_deps = ${common.lib_deps}
2938

3039
[env:ethernet]
3140
platform = atmelavr
3241
framework = arduino
3342
board = ethernet
43+
lib_deps = ${common.lib_deps}

0 commit comments

Comments
 (0)