1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-26 07:02:21 +01:00

Fork some base libraries (#758)

* Fork some base libraries

* Update ESPAsyncWebServer
This commit is contained in:
Otto Winter
2019-10-18 14:46:09 +02:00
committed by GitHub
parent 68d0d045c0
commit c3aa834d80
10 changed files with 10 additions and 57 deletions

View File

@@ -9,5 +9,5 @@ def to_code(config):
# https://github.com/me-no-dev/AsyncTCP/blob/master/library.json
cg.add_library('AsyncTCP', '1.0.3')
elif CORE.is_esp8266:
# https://github.com/me-no-dev/ESPAsyncTCP/blob/master/library.json
cg.add_library('ESPAsyncTCP', '1.2.0')
# https://github.com/OttoWinter/ESPAsyncTCP
cg.add_library('ESPAsyncTCP-esphome', '1.2.2')

View File

@@ -155,7 +155,7 @@ def to_code(config):
yield cg.register_component(var, config)
# https://github.com/marvinroger/async-mqtt-client/blob/master/library.json
cg.add_library('AsyncMqttClient', '0.8.2')
cg.add_library('AsyncMqttClient-esphome', '0.8.2')
cg.add_define('USE_MQTT')
cg.add_global(mqtt_ns.using)

View File

@@ -169,4 +169,4 @@ def to_code(config):
cg.add(var.set_pixel_order(getattr(ESPNeoPixelOrder, config[CONF_TYPE])))
# https://github.com/Makuna/NeoPixelBus/blob/master/library.json
cg.add_library('NeoPixelBus', '2.5.0')
cg.add_library('NeoPixelBus-esphome', '2.5.2')

View File

@@ -21,5 +21,5 @@ def to_code(config):
if CORE.is_esp32:
cg.add_library('FS', None)
# https://github.com/me-no-dev/ESPAsyncWebServer/blob/master/library.json
cg.add_library('ESP Async WebServer', '1.2.2')
# https://github.com/OttoWinter/ESPAsyncWebServer/blob/master/library.json
cg.add_library('ESPAsyncWebServer-esphome', '1.2.4')