Skip to content

Commit

Permalink
Pull in new AsyncTCP for IPv6 on BK72xx
Browse files Browse the repository at this point in the history
Needs the IPADDR6_INIT fix from esphome/AsyncTCP#14
  • Loading branch information
dwmw2 committed Sep 6, 2024
1 parent ddd3391 commit 115c1c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions esphome/components/async_tcp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Dummy integration to allow relying on AsyncTCP
import esphome.codegen as cg
import esphome.config_validation as cv
from esphome.core import CORE, coroutine_with_priority
from esphome.const import (
PLATFORM_BK72XX,
PLATFORM_ESP32,
PLATFORM_ESP8266,
PLATFORM_BK72XX,
PLATFORM_RTL87XX,
)
from esphome.core import CORE, coroutine_with_priority

CODEOWNERS = ["@OttoWinter"]

Expand All @@ -22,7 +22,7 @@
async def to_code(config):
if CORE.is_esp32 or CORE.is_libretiny:
# https://github.com/esphome/AsyncTCP/blob/master/library.json
cg.add_library("esphome/AsyncTCP-esphome", "2.1.3")
cg.add_library("esphome/AsyncTCP-esphome", "2.1.4")
elif CORE.is_esp8266:
# https://github.com/esphome/ESPAsyncTCP
cg.add_library("esphome/ESPAsyncTCP-esphome", "2.0.0")

0 comments on commit 115c1c5

Please sign in to comment.