Skip to content

Commit 7d95748

Browse files
Point to ESPHome forks
1 parent e3d7c37 commit 7d95748

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/build_arduino-ide.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ jobs:
5858
libraries: |
5959
- name: espMqttClient
6060
source-path: ./
61-
- name: ESPAsyncTCP
61+
- name: AsyncTCP
6262
source-url: https://github.com/me-no-dev/AsyncTCP.git

.github/workflows/build_platformio.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install PlatformIO Core
2929
run: pip install --upgrade platformio
3030
- name: Download external libraries
31-
run: pio pkg install --global --library me-no-dev/EspAsyncTCP
31+
run: pio pkg install --global --library esphome/EspAsyncTCP-esphome
3232
- name: Build PlatformIO examples
3333
run: pio ci --lib="." --board=d1_mini
3434
env:
@@ -58,7 +58,7 @@ jobs:
5858
- name: Install PlatformIO Core
5959
run: pip install --upgrade platformio
6060
- name: Download external libraries
61-
run: pio pkg install --global --library me-no-dev/AsyncTCP
61+
run: pio pkg install --global --library esphome/AsyncTCP-esphome
6262
- name: Build PlatformIO examples
6363
run: pio ci --lib="." --board=lolin32
6464
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Aims to be a non-blocking, fully compliant MQTT 3.1.1 client.
1616
- TCP and TCP/TLS using standard WiFiClient and WiFiClientSecure connections
1717
- Virtually unlimited incoming and outgoing payload sizes
1818
- Readable and understandable code
19-
- Fully async clients available via [AsyncTCP](https://github.com/me-no-dev/AsyncTCP) or [ESPAsnycTCP](https://github.com/me-no-dev/ESPAsyncTCP) (no TLS supported)
19+
- Fully async clients available via [AsyncTCP](https://github.com/esphome/AsyncTCP) or [ESPAsnycTCP](https://github.com/esphome/ESPAsyncTCP) (no TLS supported)
2020
- Supported platforms:
2121
- Espressif ESP8266 and ESP32 using the Arduino framework
2222
- Espressif ESP32 using the ESP IDF, see [esp idf component](https://docs.espressif.com/projects/arduino-esp32/en/latest/esp-idf_component.html)

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- TCP and TCP/TLS using standard WiFiClient and WiFiClientSecure connections
1111
- Virtually unlimited incoming and outgoing payload sizes
1212
- Readable and understandable code
13-
- Fully async clients available via [AsyncTCP](https://github.com/me-no-dev/AsyncTCP) or [ESPAsnycTCP](https://github.com/me-no-dev/ESPAsyncTCP) (no TLS supported)
13+
- Fully async clients available via [AsyncTCP](https://github.com/esphome/AsyncTCP) or [ESPAsnycTCP](https://github.com/esphome/ESPAsyncTCP) (no TLS supported)
1414
- Supported platforms:
1515
- Espressif ESP8266 and ESP32 using the Arduino framework
1616
- Basic Linux compatibility*. This includes WSL on Windows

library.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
"headers": ["espMqttClient.h", "espMqttClientAsync.h"],
2121
"dependencies": [
2222
{
23-
"owner": "me-no-dev",
24-
"name": "ESPAsyncTCP",
25-
"version": ">=1.2.2",
23+
"owner": "esphome",
24+
"name": "ESPAsyncTCP-esphome",
25+
"version": ">=2.0.0",
2626
"platforms": "espressif8266"
2727
},
2828
{
29-
"owner": "me-no-dev",
30-
"name": "AsyncTCP",
31-
"version": ">=1.1.1",
29+
"owner": "esphome",
30+
"name": "AsyncTCP-esphome",
31+
"version": ">=2.1.1",
3232
"platforms": "espressif32"
3333
}
3434
],

0 commit comments

Comments
 (0)