Skip to content

Commit a562d56

Browse files
platformio on travis has issues with the U8g2 entry
try if multi-line and some addtl. blanks help. error message: LDF: Library Dependency Finder -> http://bit.ly/configure-pio-ldf LDF Modes: Finder ~ chain, Compatibility ~ soft Looking for U8g2@> library in registry Warning! Library `{'name': 'U8g2@>', 'requirements': '>=1.0.2,'}` has not been found in PlatformIO Registry.
1 parent 09c79a9 commit a562d56

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

platformio-example.ini

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,28 @@ src_dir = multigeiger
2020
[env:wifi]
2121
board = heltec_wifi_kit_32
2222
platform = espressif32
23-
framework = arduino
2423
src_filter = +<*> -<.git/> -<loraWan*>
2524
build_flags = -DCPU=WIFI
25+
framework = arduino
2626
monitor_speed = ${common.monitor_speed}
27-
lib_deps = ${common.lib_deps}
27+
lib_deps =
28+
${common.lib_deps}
2829

2930
[env:stick]
3031
board = heltec_wireless_stick
3132
build_flags = -DCPU=STICK
3233
platform = espressif32
33-
lib_deps =
34-
${common.lib_deps}, MCCI LoRaWAN LMIC library@>=3.0.99
3534
framework = arduino
3635
monitor_speed = ${common.monitor_speed}
36+
lib_deps =
37+
${common.lib_deps}
38+
MCCI LoRaWAN LMIC library
3739

3840
[common]
3941
monitor_speed=115200
40-
lib_deps= U8g2@>=2.16.14, Adafruit BME280 Library@>=1.0.7, Adafruit Unified Sensor@>=1.0.2,
41-
IotWebConf@>=2.3.0
42+
lib_deps=
43+
U8g2
44+
Adafruit BME280 Library
45+
Adafruit Unified Sensor
46+
IotWebConf
4247

0 commit comments

Comments
 (0)