Skip to content

Commit

Permalink
Update library.json: Point to ESPHome forks
Browse files Browse the repository at this point in the history
Signed-off-by: Mathieu Carbou <[email protected]>
  • Loading branch information
mathieucarbou committed Jan 12, 2024
1 parent 885e631 commit d706398
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_arduino-ide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: espMqttClient
source-path: ./
- name: ESPAsyncTCP
source-url: https://github.com/me-no-dev/ESPAsyncTCP.git
source-url: https://github.com/esphome/ESPAsyncTCP.git
build-for-esp32:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -59,4 +59,4 @@ jobs:
- name: espMqttClient
source-path: ./
- name: ESPAsyncTCP
source-url: https://github.com/me-no-dev/AsyncTCP.git
source-url: https://github.com/esphome/AsyncTCP.git
4 changes: 2 additions & 2 deletions .github/workflows/build_platformio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Download external libraries
run: pio pkg install --global --library me-no-dev/EspAsyncTCP
run: pio pkg install --global --library esphome/EspAsyncTCP
- name: Build PlatformIO examples
run: pio ci --lib="." --board=d1_mini
env:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Download external libraries
run: pio pkg install --global --library me-no-dev/AsyncTCP
run: pio pkg install --global --library esphome/AsyncTCP
- name: Build PlatformIO examples
run: pio ci --lib="." --board=lolin32
env:
Expand Down
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
branch = idf-release/v4.4
[submodule "examples/simple-esp32-idf/components/AsyncTCP"]
path = examples/simple-esp32-idf/components/AsyncTCP
url = https://github.com/me-no-dev/AsyncTCP
url = https://github.com/esphome/AsyncTCP
[submodule "examples/simple-esp32-idf/components/espMqttClient"]
path = examples/simple-esp32-idf/components/espMqttClient
url = https://github.com/bertmelis/espMqttClient
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Aims to be a non-blocking, fully compliant MQTT 3.1.1 client.
- TCP and TCP/TLS using standard WiFiClient and WiFiClientSecure connections
- Virtually unlimited incoming and outgoing payload sizes
- Readable and understandable code
- 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)
- Fully async clients available via [AsyncTCP](https://github.com/esphome/AsyncTCP) or [ESPAsnycTCP](https://github.com/esphome/ESPAsyncTCP) (no TLS supported)
- Supported platforms:
- Espressif ESP8266 and ESP32 using the Arduino framework
- Espressif ESP32 using the ESP IDF, see [esp idf component](https://docs.espressif.com/projects/arduino-esp32/en/latest/esp-idf_component.html)
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- TCP and TCP/TLS using standard WiFiClient and WiFiClientSecure connections
- Virtually unlimited incoming and outgoing payload sizes
- Readable and understandable code
- 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)
- Fully async clients available via [AsyncTCP](https://github.com/esphome/AsyncTCP) or [ESPAsnycTCP](https://github.com/esphome/ESPAsyncTCP) (no TLS supported)
- Supported platforms:
- Espressif ESP8266 and ESP32 using the Arduino framework
- Basic Linux compatibility*. This includes WSL on Windows
Expand Down
12 changes: 6 additions & 6 deletions library.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
"headers": ["espMqttClient.h", "espMqttClientAsync.h"],
"dependencies": [
{
"owner": "me-no-dev",
"name": "ESPAsyncTCP",
"version": ">=1.2.2",
"owner": "esphome",
"name": "ESPAsyncTCP-esphome",
"version": "2.0.0",
"platforms": "espressif8266"
},
{
"owner": "me-no-dev",
"name": "AsyncTCP",
"version": ">=1.1.1",
"owner": "esphome",
"name": "AsyncTCP-esphome",
"version": "2.0.1",
"platforms": "espressif32"
}
],
Expand Down

0 comments on commit d706398

Please sign in to comment.