Skip to content
This repository was archived by the owner on Apr 28, 2022. It is now read-only.

Commit 1578caf

Browse files
committed
Travis CI fix
1 parent ef623b5 commit 1578caf

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

platformio.ini

+20-15
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ env_default = nodemcuv2
1515
description = The ESP8266 based multi-client lighting gadget
1616

1717
[common]
18+
framework = arduino
19+
20+
; platform = https://github.com/platformio/platform-espressif8266.git
21+
; platform = https://github.com/platformio/platform-espressif8266.git#feature/stage
22+
; platform = https://github.com/platformio/platform-espressif8266.git#develop
1823
build_flags =
1924
-DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH
2025
-DMQTT_MAX_PACKET_SIZE=2048 ; PubSubClient Specific flags
@@ -23,33 +28,33 @@ monitor_speed = 115200
2328
board_build.flash_mode = dout
2429
upload_speed = 115200
2530
upload_resetmethod = nodemcu
26-
31+
lib_deps =
32+
33+
AsyncMqttClient
34+
https://github.com/bblanchon/ArduinoJson.git#v6.7.0-beta
35+
WS2812FX
36+
37+
WebSockets
38+
ESPAsyncE131
39+
ESPAsyncUDP
2740

2841
[env:esp01_1m]
2942
board = esp01_1m
30-
framework = arduino
31-
43+
framework = ${common.framework}
44+
platform = ${common.platform}
3245
build_flags = ${common.build_flags} -D D1=2
3346
monitor_speed = ${common.monitor_speed}
3447
upload_speed = ${common.upload_speed}
3548
upload_resetmethod = ${common.upload_resetmethod}
3649
board_build.flash_mode = dout
50+
lib_deps = ${common.lib_deps}
3751

3852
[env:nodemcuv2]
3953
board = nodemcuv2
40-
framework = arduino
41-
54+
framework = ${common.framework}
55+
platform = ${common.platform}
4256
build_flags = ${common.build_flags}
4357
monitor_speed = ${common.monitor_speed}
4458
upload_speed = ${common.upload_speed}
4559
upload_resetmethod = ${common.upload_resetmethod}
46-
47-
lib_deps =
48-
49-
AsyncMqttClient
50-
https://github.com/bblanchon/ArduinoJson.git#v6.7.0-beta
51-
WS2812FX
52-
53-
WebSockets
54-
ESPAsyncE131
55-
ESPAsyncUDP
60+
lib_deps = ${common.lib_deps}

0 commit comments

Comments
 (0)