mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 17:27:45 +01:00
Update AsyncMQTTClient/ESPAsyncWebServer (#779)
This commit is contained in:
parent
d2c7afeef0
commit
48f52db1d9
3 changed files with 6 additions and 6 deletions
|
@ -154,8 +154,8 @@ def to_code(config):
|
||||||
var = cg.new_Pvariable(config[CONF_ID])
|
var = cg.new_Pvariable(config[CONF_ID])
|
||||||
yield cg.register_component(var, config)
|
yield cg.register_component(var, config)
|
||||||
|
|
||||||
# https://github.com/marvinroger/async-mqtt-client/blob/master/library.json
|
# https://github.com/OttoWinter/async-mqtt-client/blob/master/library.json
|
||||||
cg.add_library('AsyncMqttClient-esphome', '0.8.2')
|
cg.add_library('AsyncMqttClient-esphome', '0.8.3')
|
||||||
cg.add_define('USE_MQTT')
|
cg.add_define('USE_MQTT')
|
||||||
cg.add_global(mqtt_ns.using)
|
cg.add_global(mqtt_ns.using)
|
||||||
|
|
||||||
|
|
|
@ -22,4 +22,4 @@ def to_code(config):
|
||||||
if CORE.is_esp32:
|
if CORE.is_esp32:
|
||||||
cg.add_library('FS', None)
|
cg.add_library('FS', None)
|
||||||
# https://github.com/OttoWinter/ESPAsyncWebServer/blob/master/library.json
|
# https://github.com/OttoWinter/ESPAsyncWebServer/blob/master/library.json
|
||||||
cg.add_library('ESPAsyncWebServer-esphome', '1.2.4')
|
cg.add_library('ESPAsyncWebServer-esphome', '1.2.5')
|
||||||
|
|
|
@ -10,10 +10,10 @@ include_dir = include
|
||||||
|
|
||||||
[common]
|
[common]
|
||||||
lib_deps =
|
lib_deps =
|
||||||
AsyncTCP@1.0.3
|
AsyncTCP@1.1.1
|
||||||
AsyncMqttClient-esphome@0.8.2
|
AsyncMqttClient-esphome@0.8.3
|
||||||
ArduinoJson-esphomelib@5.13.3
|
ArduinoJson-esphomelib@5.13.3
|
||||||
ESPAsyncWebServer-esphome@1.2.3
|
ESPAsyncWebServer-esphome@1.2.5
|
||||||
FastLED@3.2.9
|
FastLED@3.2.9
|
||||||
NeoPixelBus-esphome@2.5.2
|
NeoPixelBus-esphome@2.5.2
|
||||||
ESPAsyncTCP-esphome@1.2.2
|
ESPAsyncTCP-esphome@1.2.2
|
||||||
|
|
Loading…
Reference in a new issue