Skip to content

v4.0.9 #253

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Feb 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
131 changes: 79 additions & 52 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,57 @@ on:
push:
paths-ignore:
- "**/**.md"
- "LICENSE"
- "keywords.txt"
- "library.json"
- "library.properties"
- "docs/**"
- "portal"
- "docs/*"
pull_request:
paths-ignore:
- "**/**.md"
- "LICENSE"
- "keywords.txt"
- "library.json"
- "library.properties"
- "docs/**"
- "portal"
- "docs/*"

jobs:
arduino:
name: arduino ${{ matrix.name }}
name: Arduino - ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: package_esp32_index.json
- name: CI ESP8266
core: esp8266:esp8266
board: esp8266:esp8266:huzzah
index_url: https://arduino.esp8266.com/stable/package_esp8266com_index.json

- name: CI ESP32
core: esp32:esp32
board: esp32:esp32:esp32
index_url: https://espressif.github.io/arduino-esp32/package_esp32_index.json
- name: package_esp32_dev_index.json

- name: CI ESP32 (Dev Branch)
core: esp32:esp32
board: esp32:esp32:esp32
index_url: https://espressif.github.io/arduino-esp32/package_esp32_dev_index.json
- name: package_esp8266com_index.json
core: esp8266:esp8266
board: esp8266:esp8266:huzzah
index_url: https://arduino.esp8266.com/stable/package_esp8266com_index.json


- name: CI Pico W | RP2040+W
core: rp2040:rp2040
board: rp2040:rp2040:rpipicow
# index_url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
index_url: https://github.com/earlephilhower/arduino-pico/releases/download/4.4.3/package_rp2040_index.json

- name: CI Pico 2W | RP2350+W
core: rp2040:rp2040
board: rp2040:rp2040:rpipico2w
# index_url: https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json
index_url: https://github.com/earlephilhower/arduino-pico/releases/download/4.4.3/package_rp2040_index.json

steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -55,17 +73,23 @@ jobs:
- name: Install core
run: arduino-cli core install --additional-urls "${{ matrix.index_url }}" ${{ matrix.core }}

- name: Install AsyncTCP
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/AsyncTCP#v3.2.10
- name: Install AsyncTCP (ESP32)
if: ${{ matrix.core == 'esp32:esp32' }}
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/AsyncTCP#v3.3.5

- name: Install ESPAsyncTCP
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/esphome-ESPAsyncTCP#v2.0.0
- name: Install ESPAsyncTCP (ESP8266)
if: ${{ matrix.core == 'esp8266:esp8266' }}
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/ESPAsyncTCP#v2.0.0

- name: Install RPAsyncTCP (RP2040)
if: ${{ matrix.core == 'rp2040:rp2040' }}
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ayushsharma82/RPAsyncTCP#v1.3.0

- name: Install ESPAsyncWebServer
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/mathieucarbou/ESPAsyncWebServer#v3.3.14
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/ESPAsyncWebServer#v3.7.1

- name: Install ArduinoJson
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/bblanchon/ArduinoJson#v7.1.0
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/bblanchon/ArduinoJson#v7.3.0

- name: Build AccessPoint
run: arduino-cli compile --library . --warnings none -b ${{ matrix.board }} "examples/AccessPoint/AccessPoint.ino"
Expand All @@ -86,65 +110,68 @@ jobs:
run: arduino-cli compile --library . --warnings none -b ${{ matrix.board }} "examples/Interactive/Interactive.ino"

platformio:
name: "pio:${{ matrix.env }}:${{ matrix.board }}"
name: PlatformIO - ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- env: ci-arduino-2
board: esp32dev
- env: ci-arduino-2
board: esp32-s2-saola-1
- env: ci-arduino-2
board: esp32-s3-devkitc-1
- env: ci-arduino-2
board: esp32-c3-devkitc-02

- env: ci-arduino-3
board: esp32dev
- env: ci-arduino-3
board: esp32-s2-saola-1
- env: ci-arduino-3
board: esp32-s3-devkitc-1
- env: ci-arduino-3
board: esp32-c3-devkitc-02
- env: ci-arduino-3
board: esp32-c6-devkitc-1
- name: CI ESP8266 | Huzzah
env: ci-esp8266
board: huzzah

- name: CI ESP8266 | D1 Mini
env: ci-esp8266
board: d1_mini

- env: ci-arduino-310rc1
- name: CI ESP32
env: ci-esp32
board: esp32dev
- env: ci-arduino-310rc1

- name: CI ESP32-S2
env: ci-esp32
board: esp32-s2-saola-1
- env: ci-arduino-310rc1

- name: CI ESP32-S3
env: ci-esp32
board: esp32-s3-devkitc-1
- env: ci-arduino-310rc1

- name: CI ESP32-C3
env: ci-esp32
board: esp32-c3-devkitc-02
- env: ci-arduino-310rc1

- name: CI ESP32-C6
env: ci-esp32
board: esp32-c6-devkitc-1

- env: ci-esp8266
board: huzzah
- env: ci-esp8266
board: d1_mini

- name: CI Pico W | RP2040+W
env: ci-rp2040
board: rpipicow
platform: https://github.com/maxgerhardt/platform-raspberrypi.git
opts: "--project-option 'board_build.core=earlephilhower'"

- name: CI Pico 2W | RP2350+W
env: ci-rp2350
board: rpipico2w
platform: https://github.com/maxgerhardt/platform-raspberrypi.git
opts: "--project-option 'board_build.core=earlephilhower'"
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Cache PlatformIO
- name: Set up cache
uses: actions/cache@v4
with:
key: ${{ runner.os }}-pio
path: |
~/.cache/pip
~/.platformio

- name: Python
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"

- name: Build
- name: Setup PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<br/>
<br/>
<p><b>ESP-DASH</b> is the 4th-gen blazing fast library to create a real-time, on-device dashboard for <b>ESP8266</b>, <b>ESP32</b> & <b>RP2040</b> microcontrollers.
<p><b>ESP-DASH</b> is the 4th-gen blazing fast library to create a real-time, on-device dashboard for <b>ESP8266</b>, <b>ESP32</b>, <b>RP2040</b> and <b>RP2350</b> microcontrollers.

This library includes charts, display cards, interactive buttons and many more components to create a perfect dashboard which is accessible locally via your IoT device's IP. ESP-DASH does not require any kind of internet connection, everything is stored locally.</p>

Expand Down
1 change: 0 additions & 1 deletion docs/logo-collapsed.svg

This file was deleted.

1 change: 0 additions & 1 deletion docs/logo.svg

This file was deleted.

5 changes: 5 additions & 0 deletions examples/AccessPoint/AccessPoint.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
#include <WiFi.h>
#include <AsyncTCP.h>
#include <ESPAsyncWebServer.h>
#elif defined(TARGET_RP2040) || defined(PICO_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2350)
/* RP2040 or RP2350 Dependencies */
#include <WiFi.h>
#include <RPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
#endif
#include <ESPDash.h>

Expand Down
5 changes: 5 additions & 0 deletions examples/Basic/Basic.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
#include <WiFi.h>
#include <AsyncTCP.h>
#include <ESPAsyncWebServer.h>
#elif defined(TARGET_RP2040) || defined(PICO_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2350)
/* RP2040 or RP2350 Dependencies */
#include <WiFi.h>
#include <RPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
#endif
#include <ESPDash.h>

Expand Down
5 changes: 5 additions & 0 deletions examples/Benchmark/Benchmark.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
#include <WiFi.h>
#include <AsyncTCP.h>
#include <ESPAsyncWebServer.h>
#elif defined(TARGET_RP2040) || defined(PICO_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2350)
/* RP2040 or RP2350 Dependencies */
#include <WiFi.h>
#include <RPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
#endif

#include <ESPDash.h>
Expand Down
5 changes: 5 additions & 0 deletions examples/Chart/Chart.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
#include <WiFi.h>
#include <AsyncTCP.h>
#include <ESPAsyncWebServer.h>
#elif defined(TARGET_RP2040) || defined(PICO_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2350)
/* RP2040 or RP2350 Dependencies */
#include <WiFi.h>
#include <RPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
#endif
#include <ESPDash.h>

Expand Down
5 changes: 5 additions & 0 deletions examples/Dynamic/Dynamic.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
#include <WiFi.h>
#include <AsyncTCP.h>
#include <ESPAsyncWebServer.h>
#elif defined(TARGET_RP2040) || defined(PICO_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2350)
/* RP2040 or RP2350 Dependencies */
#include <WiFi.h>
#include <RPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
#endif
#include <ESPDash.h>

Expand Down
5 changes: 5 additions & 0 deletions examples/Interactive/Interactive.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
#include <WiFi.h>
#include <AsyncTCP.h>
#include <ESPAsyncWebServer.h>
#elif defined(TARGET_RP2040) || defined(PICO_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2350)
/* RP2040 or RP2350 Dependencies */
#include <WiFi.h>
#include <RPAsyncTCP.h>
#include <ESPAsyncWebServer.h>
#endif
#include <ESPDash.h>

Expand Down
18 changes: 9 additions & 9 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ESP-DASH",
"keywords": "EspDash, esp8266, esp32, ui, dashboard, user, ux, interface, gui, iot, arduino, Wifi, server",
"description": "A blazing fast library to create realtime dashboards for ESP8266's and ESP32's.",
"keywords": "espdash, esp8266, esp32, rp2040, rp2350, webserver, ui, dashboard, user, ux, interface, gui, iot, arduino, wifi, server",
"description": "ESP-DASH lets you create functional and beautiful self-hosted dashboards for your ESP8266, ESP32, RP2040 or RP2350 without the need of an internet connection.",
"repository":
{
"type": "git",
Expand All @@ -15,21 +15,21 @@
"maintainer": true
}
],
"version": "4.0.8",
"version": "4.0.9",
"frameworks": "arduino",
"platforms": ["espressif32", "espressif8266"],
"platforms": ["espressif8266", "espressif32", "raspberrypi"],
"dependencies": [
{
"owner": "bblanchon",
"name": "ArduinoJson",
"version": "^7.1.0",
"platforms": ["espressif8266", "espressif32"]
"version": "^7.3.0",
"platforms": ["espressif8266", "espressif32", "raspberrypi"]
},
{
"owner": "mathieucarbou",
"owner": "ESP32Async",
"name": "ESPAsyncWebServer",
"version": "^3.3.14",
"platforms": ["espressif8266", "espressif32"]
"version": "^3.7.1",
"platforms": ["espressif8266", "espressif32", "raspberrypi"]
}
]
}
8 changes: 4 additions & 4 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=ESP-DASH
version=4.0.8
version=4.0.9
author=Ayush Sharma
category=Communication
maintainer=Ayush Sharma <[email protected]>
sentence=A blazing fast library to create realtime dashboards for ESP8266's and ESP32's.
paragraph=ESP-DASH lets you create functional and beautiful dashboards for your ESP8266 / ESP32 without the need of an internet connection.
sentence=A blazing fast library to create realtime dashboards for ESP8266, ESP32, RP2040 and RP2350 MCUs.
paragraph=ESP-DASH lets you create functional and beautiful self-hosted dashboards for your ESP8266, ESP32, RP2040 or RP2350 without the need of an internet connection.
url=https://github.com/ayushsharma82/ESP-DASH
architectures=esp8266,esp32
architectures=esp8266,esp32,rp2040
Loading
Loading