1
0

Compare commits

...

82 Commits

27 changed files with 197 additions and 313 deletions

View File

@@ -3,7 +3,12 @@ FROM ghcr.io/home-assistant/devcontainer:addons
RUN \
apt-get update \
&& apt-get install -y --no-install-recommends \
python3-pip
python3-pip \
python3-venv
ENV VIRTUAL_ENV=/opt/venv
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
COPY script/requirements.txt /

View File

@@ -14,23 +14,28 @@
"containerEnv": {
"WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}"
},
"extensions": [
"timonwong.shellcheck",
"esbenp.prettier-vscode"
],
"mounts": [
"type=volume,target=/var/lib/docker"
],
"settings": {
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/usr/bin/zsh"
"customizations": {
"vscode": {
"extensions": [
"timonwong.shellcheck",
"esbenp.prettier-vscode",
"ms-python.python"
],
"mounts": [
"type=volume,target=/var/lib/docker"
],
"settings": {
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/usr/bin/zsh"
}
},
"terminal.integrated.defaultProfile.linux": "zsh",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true
}
},
"terminal.integrated.defaultProfile.linux": "zsh",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true
}
}
}

View File

@@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v3.5.2
- uses: actions/setup-python@v4
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v4.7.1
with:
python-version: '3.x'
python-version: '3.11'
- run: pip install -r script/requirements.txt
- run: script/bump-version.py ${{ github.event.inputs.version }}
- name: Write Beta changelog

View File

@@ -19,20 +19,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.5.2
- uses: actions/checkout@v4.1.1
- name: Log in to the GitHub container registry
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.0.0
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.1.0
uses: docker/setup-qemu-action@v3.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.5.0
uses: docker/setup-buildx-action@v3.0.0
- name: Build and Push
uses: docker/build-push-action@v4.0.0
uses: docker/build-push-action@v5.0.0
with:
context: .
file: .devcontainer/Dockerfile

View File

@@ -19,16 +19,16 @@ jobs:
channel: dev
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4.1.1
- name: 🛠 Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v4.7.1
with:
python-version: '3.x'
python-version: '3.11'
- name: 🛠 Install dependencies
run: pip install -r script/requirements.txt
- name: 🛠 Generate files from template
run: python script/generate.py ${{ matrix.channels.channel }}
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }}
uses: frenck/action-addon-linter@v2.12.0
uses: frenck/action-addon-linter@v2.13.2
with:
path: "./${{ matrix.channels.folder }}"

View File

@@ -1,113 +1,7 @@
## 2023.5.0
## 2023.11.2
## Full list of changes
### New Components
- Add mlx90614 sensors [esphome#3749](https://github.com/esphome/esphome/pull/3749) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add PCA6416A Support [esphome#4681](https://github.com/esphome/esphome/pull/4681) by [@Mat931](https://github.com/Mat931) (new-integration)
- Add support for hyt271 [esphome#4282](https://github.com/esphome/esphome/pull/4282) by [@Philippe12](https://github.com/Philippe12) (new-integration)
- Max6956 support added [esphome#3764](https://github.com/esphome/esphome/pull/3764) by [@looping40](https://github.com/looping40) (new-integration)
- Speaker support [esphome#4743](https://github.com/esphome/esphome/pull/4743) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add gp8403 output component [esphome#4495](https://github.com/esphome/esphome/pull/4495) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Create esp32 rmt addressable light driver [esphome#4708](https://github.com/esphome/esphome/pull/4708) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add host target platform [esphome#4783](https://github.com/esphome/esphome/pull/4783) by [@jesserockz](https://github.com/jesserockz) (new-integration)
### Breaking Changes
- Remove climate legacy away flags [esphome#4744](https://github.com/esphome/esphome/pull/4744) by [@jesserockz](https://github.com/jesserockz) (breaking-change)
- Revert "Template sensors always publish on update interval (#2224)" [esphome#4774](https://github.com/esphome/esphome/pull/4774) by [@nuttytree](https://github.com/nuttytree) (breaking-change)
### Beta Changes
- Fixed access point for ESP32 IDF platform [esphome#4784](https://github.com/esphome/esphome/pull/4784) by [@HeMan](https://github.com/HeMan)
- Remove AUTO_LOAD from apds9960 [esphome#4746](https://github.com/esphome/esphome/pull/4746) by [@jesserockz](https://github.com/jesserockz)
- Supposed to fix #4069, by changing the default value to 0s (timeunit … [esphome#4806](https://github.com/esphome/esphome/pull/4806) by [@Alex1602](https://github.com/Alex1602)
- Wording [esphome#4805](https://github.com/esphome/esphome/pull/4805) by [@fgsch](https://github.com/fgsch)
- Tuya: Prevent loop when setting colors on case-sensitive dps [esphome#4809](https://github.com/esphome/esphome/pull/4809) by [@richardhopton](https://github.com/richardhopton)
- Fix i2s media player volume control [esphome#4813](https://github.com/esphome/esphome/pull/4813) by [@jesserockz](https://github.com/jesserockz)
- Dont try stop if not actually started [esphome#4814](https://github.com/esphome/esphome/pull/4814) by [@jesserockz](https://github.com/jesserockz)
- Fix missing stop trait in send_cover_info [esphome#4826](https://github.com/esphome/esphome/pull/4826) by [@RoboMagus](https://github.com/RoboMagus)
- Bump aioesphomeapi from 13.7.2 to 13.7.5 [esphome#4830](https://github.com/esphome/esphome/pull/4830) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Update PulseLightEffect with range brightness [esphome#4820](https://github.com/esphome/esphome/pull/4820) by [@max246](https://github.com/max246)
- Bump esphome-dashboard to 20230516.0 [esphome#4831](https://github.com/esphome/esphome/pull/4831) by [@jesserockz](https://github.com/jesserockz)
- Fix time period validation for the auto cleaning interval [esphome#4811](https://github.com/esphome/esphome/pull/4811) by [@fgsch](https://github.com/fgsch)
- Bump tzlocal from 4.2 to 5.0.1 [esphome#4829](https://github.com/esphome/esphome/pull/4829) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Start UART assignment at UART0 if the logger is not enabled or is not configured for hardware logging on ESP32 [esphome#4762](https://github.com/esphome/esphome/pull/4762) by [@spectrumjade](https://github.com/spectrumjade)
- Synchronise Device Classes from Home Assistant [esphome#4825](https://github.com/esphome/esphome/pull/4825) by [@github-actions[bot]](https://github.com/apps/github-actions)
- support sending keys to the collector [esphome#4838](https://github.com/esphome/esphome/pull/4838) by [@ssieb](https://github.com/ssieb)
- handle Wiegand 8-bit keys [esphome#4837](https://github.com/esphome/esphome/pull/4837) by [@ssieb](https://github.com/ssieb)
### All changes
- Only allow 5 jobs from each CI run to be in parallel [esphome#4682](https://github.com/esphome/esphome/pull/4682) by [@jesserockz](https://github.com/jesserockz)
- Add Bayesian type for binary_sensor_map component [esphome#4640](https://github.com/esphome/esphome/pull/4640) by [@kahrendt](https://github.com/kahrendt)
- Bump aioesphomeapi from 13.5.1 to 13.7.0 [esphome#4676](https://github.com/esphome/esphome/pull/4676) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump peter-evans/create-pull-request from 4 to 5 [esphome#4661](https://github.com/esphome/esphome/pull/4661) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump docker/build-push-action from 3 to 4 [esphome#4367](https://github.com/esphome/esphome/pull/4367) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Keep Device Class in Flash. [esphome#4639](https://github.com/esphome/esphome/pull/4639) by [@Fabian-Schmidt](https://github.com/Fabian-Schmidt)
- Add support for passive WiFi scanning [esphome#4666](https://github.com/esphome/esphome/pull/4666) by [@BellaCoola](https://github.com/BellaCoola)
- Initial attempt at supporting ESP-IDF 5.0.0 [esphome#4364](https://github.com/esphome/esphome/pull/4364) by [@kbx81](https://github.com/kbx81)
- Get Sunrise & Sunset for a Specific Date [esphome#4712](https://github.com/esphome/esphome/pull/4712) by [@RebbePod](https://github.com/RebbePod)
- Add `supports_stop` trait to Cover [esphome#3897](https://github.com/esphome/esphome/pull/3897) by [@amomchilov](https://github.com/amomchilov)
- Bump aioesphomeapi from 13.7.0 to 13.7.1 [esphome#4725](https://github.com/esphome/esphome/pull/4725) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Add on_tag_removed trigger for RC522 [esphome#4742](https://github.com/esphome/esphome/pull/4742) by [@kbx81](https://github.com/kbx81)
- Fix 'blutooth' typo in esp32_ble component [esphome#4738](https://github.com/esphome/esphome/pull/4738) by [@RoboMagus](https://github.com/RoboMagus)
- Bump pylint from 2.17.2 to 2.17.3 [esphome#4740](https://github.com/esphome/esphome/pull/4740) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump tornado from 6.2 to 6.3.1 [esphome#4741](https://github.com/esphome/esphome/pull/4741) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump pytest from 7.3.0 to 7.3.1 [esphome#4686](https://github.com/esphome/esphome/pull/4686) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Expand the platformio dep installer to also install platforms and tools [esphome#4716](https://github.com/esphome/esphome/pull/4716) by [@jesserockz](https://github.com/jesserockz)
- Remove climate legacy away flags [esphome#4744](https://github.com/esphome/esphome/pull/4744) by [@jesserockz](https://github.com/jesserockz) (breaking-change)
- Add mlx90614 sensors [esphome#3749](https://github.com/esphome/esphome/pull/3749) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Move am43 sensor code and remove auto load on cover [esphome#4631](https://github.com/esphome/esphome/pull/4631) by [@jesserockz](https://github.com/jesserockz)
- Fix assumed_state switch webserver [esphome#4259](https://github.com/esphome/esphome/pull/4259) by [@RoboMagus](https://github.com/RoboMagus)
- Bump aioesphomeapi from 13.7.1 to 13.7.2 [esphome#4753](https://github.com/esphome/esphome/pull/4753) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump git version in Dockerfile [esphome#4763](https://github.com/esphome/esphome/pull/4763) by [@jesserockz](https://github.com/jesserockz)
- Power down PN532 before deep sleep [esphome#4707](https://github.com/esphome/esphome/pull/4707) by [@tracestep](https://github.com/tracestep)
- Switch ESPAsyncTCP-esphome to esphome fork [esphome#4764](https://github.com/esphome/esphome/pull/4764) by [@jesserockz](https://github.com/jesserockz)
- Bump pyupgrade from 3.3.1 to 3.3.2 [esphome#4751](https://github.com/esphome/esphome/pull/4751) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Only pre-install libraries in docker images [esphome#4766](https://github.com/esphome/esphome/pull/4766) by [@jesserockz](https://github.com/jesserockz)
- Add PCA6416A Support [esphome#4681](https://github.com/esphome/esphome/pull/4681) by [@Mat931](https://github.com/Mat931) (new-integration)
- play_folder bugfix and addition of play_mp3 [esphome#4758](https://github.com/esphome/esphome/pull/4758) by [@llluis](https://github.com/llluis)
- RF Codec for Drayton Digistat heating controller [esphome#4494](https://github.com/esphome/esphome/pull/4494) by [@marshn](https://github.com/marshn)
- Add support for hyt271 [esphome#4282](https://github.com/esphome/esphome/pull/4282) by [@Philippe12](https://github.com/Philippe12) (new-integration)
- Add support for BLE passkey authentication [esphome#4258](https://github.com/esphome/esphome/pull/4258) by [@Mat931](https://github.com/Mat931)
- Add support for V2 of the waveshare 5.83in e-paper display. [esphome#3660](https://github.com/esphome/esphome/pull/3660) by [@cooki35](https://github.com/cooki35)
- Max6956 support added [esphome#3764](https://github.com/esphome/esphome/pull/3764) by [@looping40](https://github.com/looping40) (new-integration)
- Bump zeroconf from 0.56.0 to 0.60.0 [esphome#4767](https://github.com/esphome/esphome/pull/4767) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Revert "Template sensors always publish on update interval (#2224)" [esphome#4774](https://github.com/esphome/esphome/pull/4774) by [@nuttytree](https://github.com/nuttytree) (breaking-change)
- update schema gen to 2023.4.0 [esphome#4772](https://github.com/esphome/esphome/pull/4772) by [@glmnet](https://github.com/glmnet)
- Speaker support [esphome#4743](https://github.com/esphome/esphome/pull/4743) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add gp8403 output component [esphome#4495](https://github.com/esphome/esphome/pull/4495) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Create esp32 rmt addressable light driver [esphome#4708](https://github.com/esphome/esphome/pull/4708) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Bump ESP32-audioI2s to 2.0.7 [esphome#4796](https://github.com/esphome/esphome/pull/4796) by [@jesserockz](https://github.com/jesserockz)
- SM2135 Add optional current configuration, avoid communication failures. [esphome#3850](https://github.com/esphome/esphome/pull/3850) by [@BoukeHaarsma23](https://github.com/BoukeHaarsma23)
- Fix ezo parsing [esphome#4792](https://github.com/esphome/esphome/pull/4792) by [@alfredopironti](https://github.com/alfredopironti)
- [ili9xxx] Improve fill operation performance [esphome#4702](https://github.com/esphome/esphome/pull/4702) by [@Fabian-Schmidt](https://github.com/Fabian-Schmidt)
- Add host target platform [esphome#4783](https://github.com/esphome/esphome/pull/4783) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add more envs to root platformio [esphome#4799](https://github.com/esphome/esphome/pull/4799) by [@jesserockz](https://github.com/jesserockz)
- Keep Unit of Measurement in Flash. [esphome#4719](https://github.com/esphome/esphome/pull/4719) by [@Fabian-Schmidt](https://github.com/Fabian-Schmidt)
- [display] Small display print performance improvement [esphome#4788](https://github.com/esphome/esphome/pull/4788) by [@Fabian-Schmidt](https://github.com/Fabian-Schmidt)
- Fixed calculation of start and end dhcp range [esphome#4785](https://github.com/esphome/esphome/pull/4785) by [@HeMan](https://github.com/HeMan)
- Add more configuration for microphones - i2s/pdm/adc [esphome#4775](https://github.com/esphome/esphome/pull/4775) by [@jesserockz](https://github.com/jesserockz)
- Wrap VA code [esphome#4800](https://github.com/esphome/esphome/pull/4800) by [@jesserockz](https://github.com/jesserockz)
- Make i2s_audio bclk_pin optional [esphome#4801](https://github.com/esphome/esphome/pull/4801) by [@jesserockz](https://github.com/jesserockz)
- Validate project details are set for dashboard_import [esphome#4802](https://github.com/esphome/esphome/pull/4802) by [@jesserockz](https://github.com/jesserockz)
- Fixed access point for ESP32 IDF platform [esphome#4784](https://github.com/esphome/esphome/pull/4784) by [@HeMan](https://github.com/HeMan)
- Remove AUTO_LOAD from apds9960 [esphome#4746](https://github.com/esphome/esphome/pull/4746) by [@jesserockz](https://github.com/jesserockz)
- Supposed to fix #4069, by changing the default value to 0s (timeunit … [esphome#4806](https://github.com/esphome/esphome/pull/4806) by [@Alex1602](https://github.com/Alex1602)
- Wording [esphome#4805](https://github.com/esphome/esphome/pull/4805) by [@fgsch](https://github.com/fgsch)
- Tuya: Prevent loop when setting colors on case-sensitive dps [esphome#4809](https://github.com/esphome/esphome/pull/4809) by [@richardhopton](https://github.com/richardhopton)
- Fix i2s media player volume control [esphome#4813](https://github.com/esphome/esphome/pull/4813) by [@jesserockz](https://github.com/jesserockz)
- Dont try stop if not actually started [esphome#4814](https://github.com/esphome/esphome/pull/4814) by [@jesserockz](https://github.com/jesserockz)
- Fix missing stop trait in send_cover_info [esphome#4826](https://github.com/esphome/esphome/pull/4826) by [@RoboMagus](https://github.com/RoboMagus)
- Bump aioesphomeapi from 13.7.2 to 13.7.5 [esphome#4830](https://github.com/esphome/esphome/pull/4830) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Update PulseLightEffect with range brightness [esphome#4820](https://github.com/esphome/esphome/pull/4820) by [@max246](https://github.com/max246)
- Bump esphome-dashboard to 20230516.0 [esphome#4831](https://github.com/esphome/esphome/pull/4831) by [@jesserockz](https://github.com/jesserockz)
- Fix time period validation for the auto cleaning interval [esphome#4811](https://github.com/esphome/esphome/pull/4811) by [@fgsch](https://github.com/fgsch)
- Bump tzlocal from 4.2 to 5.0.1 [esphome#4829](https://github.com/esphome/esphome/pull/4829) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Start UART assignment at UART0 if the logger is not enabled or is not configured for hardware logging on ESP32 [esphome#4762](https://github.com/esphome/esphome/pull/4762) by [@spectrumjade](https://github.com/spectrumjade)
- Synchronise Device Classes from Home Assistant [esphome#4825](https://github.com/esphome/esphome/pull/4825) by [@github-actions[bot]](https://github.com/apps/github-actions)
- support sending keys to the collector [esphome#4838](https://github.com/esphome/esphome/pull/4838) by [@ssieb](https://github.com/ssieb)
- handle Wiegand 8-bit keys [esphome#4837](https://github.com/esphome/esphome/pull/4837) by [@ssieb](https://github.com/ssieb)
- Bump aioesphomeapi from 18.4.0 to 18.4.1 [esphome#5767](https://github.com/esphome/esphome/pull/5767) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump aioesphomeapi from 18.4.1 to 18.5.2 [esphome#5780](https://github.com/esphome/esphome/pull/5780) by [@dependabot[bot]](https://github.com/apps/dependabot)
- fix 32-bit arm [esphome#5781](https://github.com/esphome/esphome/pull/5781) by [@ssieb](https://github.com/ssieb)
- Add 2MB option for partitions.csv generation and restore use of user-defined partitions [esphome#5779](https://github.com/esphome/esphome/pull/5779) by [@kbx81](https://github.com/kbx81)

View File

@@ -1,9 +1,8 @@
# ESPHome Add-On
# ESPHome Beta Add-On
[![ESPHome logo](https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/logo.png)](https://esphome.io/)
[![ESPHome logo][logo]][website]
[![GitHub stars](https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000)](https://github.com/esphome/esphome)
[![GitHub Release][releases-shield]][releases]
[![GitHub stars][github-stars-shield]][repository]
[![Discord][discord-shield]][discord]
## About
@@ -14,10 +13,10 @@ is write YAML configuration files; the rest (over-the-air updates, compiling) is
handled by ESPHome.
<p align="center">
<img title="ESPHome dashboard screenshot" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/screenshot.png" width="700px"></img>
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/screenshot.png" width="700px"></img>
</p>
[View the ESPHome documentation](https://esphome.io/)
[View the ESPHome documentation][website]
## Example
@@ -26,15 +25,17 @@ firmware. For example, to include a [DHT22][dht22].
temperature and humidity sensor, you just need to include 8 lines of YAML
in your configuration file:
<img title="ESPHome DHT configuration example" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/dht-example.png" width="500px"></img>
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/dht-example.png" width="500px"></img>
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
<img title="ESPHome Home Assistant MQTT discovery" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/temperature-humidity.png" width="600px"></img>
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[dht22]: https://esphome.io/components/sensor/dht.html
[discord]: https://discord.gg/KhAMKrd
[releases-shield]: https://img.shields.io/github/release/esphome/esphome.svg
[releases]: https://esphome.io/changelog/index.html
[repository]: https://github.com/esphome/esphome
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
[dht22]: https://beta.esphome.io/components/sensor/dht.html
[releases]: https://beta.esphome.io/changelog/index.html
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/logo.png
[website]: https://beta.esphome.io/

View File

@@ -26,13 +26,12 @@ schema:
ssl: bool?
certfile: str?
keyfile: str?
relative_url: str?
leave_front_door_open: bool?
backup_exclude:
- '*/*/'
init: false
name: ESPHome (beta)
version: 2023.5.0
version: 2023.11.2
slug: esphome-beta
description: Beta version of ESPHome add-on
image: ghcr.io/esphome/esphome-hassio

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -1,9 +1,8 @@
# ESPHome Add-On
# ESPHome Dev Add-On
[![ESPHome logo](https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/logo.png)](https://esphome.io/)
[![ESPHome logo][logo]][website]
[![GitHub stars](https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000)](https://github.com/esphome/esphome)
[![GitHub Release][releases-shield]][releases]
[![GitHub stars][github-stars-shield]][repository]
[![Discord][discord-shield]][discord]
## About
@@ -14,10 +13,10 @@ is write YAML configuration files; the rest (over-the-air updates, compiling) is
handled by ESPHome.
<p align="center">
<img title="ESPHome dashboard screenshot" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/screenshot.png" width="700px"></img>
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
</p>
[View the ESPHome documentation](https://esphome.io/)
[View the ESPHome documentation][website]
## Example
@@ -26,15 +25,17 @@ firmware. For example, to include a [DHT22][dht22].
temperature and humidity sensor, you just need to include 8 lines of YAML
in your configuration file:
<img title="ESPHome DHT configuration example" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/dht-example.png" width="500px"></img>
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/dht-example.png" width="500px"></img>
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
<img title="ESPHome Home Assistant MQTT discovery" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[dht22]: https://esphome.io/components/sensor/dht.html
[discord]: https://discord.gg/KhAMKrd
[releases-shield]: https://img.shields.io/github/release/esphome/esphome.svg
[releases]: https://esphome.io/changelog/index.html
[repository]: https://github.com/esphome/esphome
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
[dht22]: https://next.esphome.io/components/sensor/dht.html
[releases]: https://next.esphome.io/changelog/index.html
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/logo.png
[website]: https://next.esphome.io/

View File

@@ -27,7 +27,6 @@ schema:
ssl: bool?
certfile: str?
keyfile: str?
relative_url: str?
leave_front_door_open: bool?
backup_exclude:
- '*/*/'

View File

@@ -1,113 +1,7 @@
## 2023.5.0
## 2023.11.2
## Full list of changes
### New Components
- Add mlx90614 sensors [esphome#3749](https://github.com/esphome/esphome/pull/3749) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add PCA6416A Support [esphome#4681](https://github.com/esphome/esphome/pull/4681) by [@Mat931](https://github.com/Mat931) (new-integration)
- Add support for hyt271 [esphome#4282](https://github.com/esphome/esphome/pull/4282) by [@Philippe12](https://github.com/Philippe12) (new-integration)
- Max6956 support added [esphome#3764](https://github.com/esphome/esphome/pull/3764) by [@looping40](https://github.com/looping40) (new-integration)
- Speaker support [esphome#4743](https://github.com/esphome/esphome/pull/4743) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add gp8403 output component [esphome#4495](https://github.com/esphome/esphome/pull/4495) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Create esp32 rmt addressable light driver [esphome#4708](https://github.com/esphome/esphome/pull/4708) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add host target platform [esphome#4783](https://github.com/esphome/esphome/pull/4783) by [@jesserockz](https://github.com/jesserockz) (new-integration)
### Breaking Changes
- Remove climate legacy away flags [esphome#4744](https://github.com/esphome/esphome/pull/4744) by [@jesserockz](https://github.com/jesserockz) (breaking-change)
- Revert "Template sensors always publish on update interval (#2224)" [esphome#4774](https://github.com/esphome/esphome/pull/4774) by [@nuttytree](https://github.com/nuttytree) (breaking-change)
### Beta Changes
- Fixed access point for ESP32 IDF platform [esphome#4784](https://github.com/esphome/esphome/pull/4784) by [@HeMan](https://github.com/HeMan)
- Remove AUTO_LOAD from apds9960 [esphome#4746](https://github.com/esphome/esphome/pull/4746) by [@jesserockz](https://github.com/jesserockz)
- Supposed to fix #4069, by changing the default value to 0s (timeunit … [esphome#4806](https://github.com/esphome/esphome/pull/4806) by [@Alex1602](https://github.com/Alex1602)
- Wording [esphome#4805](https://github.com/esphome/esphome/pull/4805) by [@fgsch](https://github.com/fgsch)
- Tuya: Prevent loop when setting colors on case-sensitive dps [esphome#4809](https://github.com/esphome/esphome/pull/4809) by [@richardhopton](https://github.com/richardhopton)
- Fix i2s media player volume control [esphome#4813](https://github.com/esphome/esphome/pull/4813) by [@jesserockz](https://github.com/jesserockz)
- Dont try stop if not actually started [esphome#4814](https://github.com/esphome/esphome/pull/4814) by [@jesserockz](https://github.com/jesserockz)
- Fix missing stop trait in send_cover_info [esphome#4826](https://github.com/esphome/esphome/pull/4826) by [@RoboMagus](https://github.com/RoboMagus)
- Bump aioesphomeapi from 13.7.2 to 13.7.5 [esphome#4830](https://github.com/esphome/esphome/pull/4830) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Update PulseLightEffect with range brightness [esphome#4820](https://github.com/esphome/esphome/pull/4820) by [@max246](https://github.com/max246)
- Bump esphome-dashboard to 20230516.0 [esphome#4831](https://github.com/esphome/esphome/pull/4831) by [@jesserockz](https://github.com/jesserockz)
- Fix time period validation for the auto cleaning interval [esphome#4811](https://github.com/esphome/esphome/pull/4811) by [@fgsch](https://github.com/fgsch)
- Bump tzlocal from 4.2 to 5.0.1 [esphome#4829](https://github.com/esphome/esphome/pull/4829) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Start UART assignment at UART0 if the logger is not enabled or is not configured for hardware logging on ESP32 [esphome#4762](https://github.com/esphome/esphome/pull/4762) by [@spectrumjade](https://github.com/spectrumjade)
- Synchronise Device Classes from Home Assistant [esphome#4825](https://github.com/esphome/esphome/pull/4825) by [@github-actions[bot]](https://github.com/apps/github-actions)
- support sending keys to the collector [esphome#4838](https://github.com/esphome/esphome/pull/4838) by [@ssieb](https://github.com/ssieb)
- handle Wiegand 8-bit keys [esphome#4837](https://github.com/esphome/esphome/pull/4837) by [@ssieb](https://github.com/ssieb)
### All changes
- Only allow 5 jobs from each CI run to be in parallel [esphome#4682](https://github.com/esphome/esphome/pull/4682) by [@jesserockz](https://github.com/jesserockz)
- Add Bayesian type for binary_sensor_map component [esphome#4640](https://github.com/esphome/esphome/pull/4640) by [@kahrendt](https://github.com/kahrendt)
- Bump aioesphomeapi from 13.5.1 to 13.7.0 [esphome#4676](https://github.com/esphome/esphome/pull/4676) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump peter-evans/create-pull-request from 4 to 5 [esphome#4661](https://github.com/esphome/esphome/pull/4661) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump docker/build-push-action from 3 to 4 [esphome#4367](https://github.com/esphome/esphome/pull/4367) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Keep Device Class in Flash. [esphome#4639](https://github.com/esphome/esphome/pull/4639) by [@Fabian-Schmidt](https://github.com/Fabian-Schmidt)
- Add support for passive WiFi scanning [esphome#4666](https://github.com/esphome/esphome/pull/4666) by [@BellaCoola](https://github.com/BellaCoola)
- Initial attempt at supporting ESP-IDF 5.0.0 [esphome#4364](https://github.com/esphome/esphome/pull/4364) by [@kbx81](https://github.com/kbx81)
- Get Sunrise & Sunset for a Specific Date [esphome#4712](https://github.com/esphome/esphome/pull/4712) by [@RebbePod](https://github.com/RebbePod)
- Add `supports_stop` trait to Cover [esphome#3897](https://github.com/esphome/esphome/pull/3897) by [@amomchilov](https://github.com/amomchilov)
- Bump aioesphomeapi from 13.7.0 to 13.7.1 [esphome#4725](https://github.com/esphome/esphome/pull/4725) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Add on_tag_removed trigger for RC522 [esphome#4742](https://github.com/esphome/esphome/pull/4742) by [@kbx81](https://github.com/kbx81)
- Fix 'blutooth' typo in esp32_ble component [esphome#4738](https://github.com/esphome/esphome/pull/4738) by [@RoboMagus](https://github.com/RoboMagus)
- Bump pylint from 2.17.2 to 2.17.3 [esphome#4740](https://github.com/esphome/esphome/pull/4740) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump tornado from 6.2 to 6.3.1 [esphome#4741](https://github.com/esphome/esphome/pull/4741) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump pytest from 7.3.0 to 7.3.1 [esphome#4686](https://github.com/esphome/esphome/pull/4686) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Expand the platformio dep installer to also install platforms and tools [esphome#4716](https://github.com/esphome/esphome/pull/4716) by [@jesserockz](https://github.com/jesserockz)
- Remove climate legacy away flags [esphome#4744](https://github.com/esphome/esphome/pull/4744) by [@jesserockz](https://github.com/jesserockz) (breaking-change)
- Add mlx90614 sensors [esphome#3749](https://github.com/esphome/esphome/pull/3749) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Move am43 sensor code and remove auto load on cover [esphome#4631](https://github.com/esphome/esphome/pull/4631) by [@jesserockz](https://github.com/jesserockz)
- Fix assumed_state switch webserver [esphome#4259](https://github.com/esphome/esphome/pull/4259) by [@RoboMagus](https://github.com/RoboMagus)
- Bump aioesphomeapi from 13.7.1 to 13.7.2 [esphome#4753](https://github.com/esphome/esphome/pull/4753) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump git version in Dockerfile [esphome#4763](https://github.com/esphome/esphome/pull/4763) by [@jesserockz](https://github.com/jesserockz)
- Power down PN532 before deep sleep [esphome#4707](https://github.com/esphome/esphome/pull/4707) by [@tracestep](https://github.com/tracestep)
- Switch ESPAsyncTCP-esphome to esphome fork [esphome#4764](https://github.com/esphome/esphome/pull/4764) by [@jesserockz](https://github.com/jesserockz)
- Bump pyupgrade from 3.3.1 to 3.3.2 [esphome#4751](https://github.com/esphome/esphome/pull/4751) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Only pre-install libraries in docker images [esphome#4766](https://github.com/esphome/esphome/pull/4766) by [@jesserockz](https://github.com/jesserockz)
- Add PCA6416A Support [esphome#4681](https://github.com/esphome/esphome/pull/4681) by [@Mat931](https://github.com/Mat931) (new-integration)
- play_folder bugfix and addition of play_mp3 [esphome#4758](https://github.com/esphome/esphome/pull/4758) by [@llluis](https://github.com/llluis)
- RF Codec for Drayton Digistat heating controller [esphome#4494](https://github.com/esphome/esphome/pull/4494) by [@marshn](https://github.com/marshn)
- Add support for hyt271 [esphome#4282](https://github.com/esphome/esphome/pull/4282) by [@Philippe12](https://github.com/Philippe12) (new-integration)
- Add support for BLE passkey authentication [esphome#4258](https://github.com/esphome/esphome/pull/4258) by [@Mat931](https://github.com/Mat931)
- Add support for V2 of the waveshare 5.83in e-paper display. [esphome#3660](https://github.com/esphome/esphome/pull/3660) by [@cooki35](https://github.com/cooki35)
- Max6956 support added [esphome#3764](https://github.com/esphome/esphome/pull/3764) by [@looping40](https://github.com/looping40) (new-integration)
- Bump zeroconf from 0.56.0 to 0.60.0 [esphome#4767](https://github.com/esphome/esphome/pull/4767) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Revert "Template sensors always publish on update interval (#2224)" [esphome#4774](https://github.com/esphome/esphome/pull/4774) by [@nuttytree](https://github.com/nuttytree) (breaking-change)
- update schema gen to 2023.4.0 [esphome#4772](https://github.com/esphome/esphome/pull/4772) by [@glmnet](https://github.com/glmnet)
- Speaker support [esphome#4743](https://github.com/esphome/esphome/pull/4743) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add gp8403 output component [esphome#4495](https://github.com/esphome/esphome/pull/4495) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Create esp32 rmt addressable light driver [esphome#4708](https://github.com/esphome/esphome/pull/4708) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Bump ESP32-audioI2s to 2.0.7 [esphome#4796](https://github.com/esphome/esphome/pull/4796) by [@jesserockz](https://github.com/jesserockz)
- SM2135 Add optional current configuration, avoid communication failures. [esphome#3850](https://github.com/esphome/esphome/pull/3850) by [@BoukeHaarsma23](https://github.com/BoukeHaarsma23)
- Fix ezo parsing [esphome#4792](https://github.com/esphome/esphome/pull/4792) by [@alfredopironti](https://github.com/alfredopironti)
- [ili9xxx] Improve fill operation performance [esphome#4702](https://github.com/esphome/esphome/pull/4702) by [@Fabian-Schmidt](https://github.com/Fabian-Schmidt)
- Add host target platform [esphome#4783](https://github.com/esphome/esphome/pull/4783) by [@jesserockz](https://github.com/jesserockz) (new-integration)
- Add more envs to root platformio [esphome#4799](https://github.com/esphome/esphome/pull/4799) by [@jesserockz](https://github.com/jesserockz)
- Keep Unit of Measurement in Flash. [esphome#4719](https://github.com/esphome/esphome/pull/4719) by [@Fabian-Schmidt](https://github.com/Fabian-Schmidt)
- [display] Small display print performance improvement [esphome#4788](https://github.com/esphome/esphome/pull/4788) by [@Fabian-Schmidt](https://github.com/Fabian-Schmidt)
- Fixed calculation of start and end dhcp range [esphome#4785](https://github.com/esphome/esphome/pull/4785) by [@HeMan](https://github.com/HeMan)
- Add more configuration for microphones - i2s/pdm/adc [esphome#4775](https://github.com/esphome/esphome/pull/4775) by [@jesserockz](https://github.com/jesserockz)
- Wrap VA code [esphome#4800](https://github.com/esphome/esphome/pull/4800) by [@jesserockz](https://github.com/jesserockz)
- Make i2s_audio bclk_pin optional [esphome#4801](https://github.com/esphome/esphome/pull/4801) by [@jesserockz](https://github.com/jesserockz)
- Validate project details are set for dashboard_import [esphome#4802](https://github.com/esphome/esphome/pull/4802) by [@jesserockz](https://github.com/jesserockz)
- Fixed access point for ESP32 IDF platform [esphome#4784](https://github.com/esphome/esphome/pull/4784) by [@HeMan](https://github.com/HeMan)
- Remove AUTO_LOAD from apds9960 [esphome#4746](https://github.com/esphome/esphome/pull/4746) by [@jesserockz](https://github.com/jesserockz)
- Supposed to fix #4069, by changing the default value to 0s (timeunit … [esphome#4806](https://github.com/esphome/esphome/pull/4806) by [@Alex1602](https://github.com/Alex1602)
- Wording [esphome#4805](https://github.com/esphome/esphome/pull/4805) by [@fgsch](https://github.com/fgsch)
- Tuya: Prevent loop when setting colors on case-sensitive dps [esphome#4809](https://github.com/esphome/esphome/pull/4809) by [@richardhopton](https://github.com/richardhopton)
- Fix i2s media player volume control [esphome#4813](https://github.com/esphome/esphome/pull/4813) by [@jesserockz](https://github.com/jesserockz)
- Dont try stop if not actually started [esphome#4814](https://github.com/esphome/esphome/pull/4814) by [@jesserockz](https://github.com/jesserockz)
- Fix missing stop trait in send_cover_info [esphome#4826](https://github.com/esphome/esphome/pull/4826) by [@RoboMagus](https://github.com/RoboMagus)
- Bump aioesphomeapi from 13.7.2 to 13.7.5 [esphome#4830](https://github.com/esphome/esphome/pull/4830) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Update PulseLightEffect with range brightness [esphome#4820](https://github.com/esphome/esphome/pull/4820) by [@max246](https://github.com/max246)
- Bump esphome-dashboard to 20230516.0 [esphome#4831](https://github.com/esphome/esphome/pull/4831) by [@jesserockz](https://github.com/jesserockz)
- Fix time period validation for the auto cleaning interval [esphome#4811](https://github.com/esphome/esphome/pull/4811) by [@fgsch](https://github.com/fgsch)
- Bump tzlocal from 4.2 to 5.0.1 [esphome#4829](https://github.com/esphome/esphome/pull/4829) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Start UART assignment at UART0 if the logger is not enabled or is not configured for hardware logging on ESP32 [esphome#4762](https://github.com/esphome/esphome/pull/4762) by [@spectrumjade](https://github.com/spectrumjade)
- Synchronise Device Classes from Home Assistant [esphome#4825](https://github.com/esphome/esphome/pull/4825) by [@github-actions[bot]](https://github.com/apps/github-actions)
- support sending keys to the collector [esphome#4838](https://github.com/esphome/esphome/pull/4838) by [@ssieb](https://github.com/ssieb)
- handle Wiegand 8-bit keys [esphome#4837](https://github.com/esphome/esphome/pull/4837) by [@ssieb](https://github.com/ssieb)
- Bump aioesphomeapi from 18.4.0 to 18.4.1 [esphome#5767](https://github.com/esphome/esphome/pull/5767) by [@dependabot[bot]](https://github.com/apps/dependabot)
- Bump aioesphomeapi from 18.4.1 to 18.5.2 [esphome#5780](https://github.com/esphome/esphome/pull/5780) by [@dependabot[bot]](https://github.com/apps/dependabot)
- fix 32-bit arm [esphome#5781](https://github.com/esphome/esphome/pull/5781) by [@ssieb](https://github.com/ssieb)
- Add 2MB option for partitions.csv generation and restore use of user-defined partitions [esphome#5779](https://github.com/esphome/esphome/pull/5779) by [@kbx81](https://github.com/kbx81)

View File

@@ -1,9 +1,8 @@
# ESPHome Add-On
[![ESPHome logo](https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/logo.png)](https://esphome.io/)
[![ESPHome logo][logo]][website]
[![GitHub stars](https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000)](https://github.com/esphome/esphome)
[![GitHub Release][releases-shield]][releases]
[![GitHub stars][github-stars-shield]][repository]
[![Discord][discord-shield]][discord]
## About
@@ -14,10 +13,10 @@ is write YAML configuration files; the rest (over-the-air updates, compiling) is
handled by ESPHome.
<p align="center">
<img title="ESPHome dashboard screenshot" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/screenshot.png" width="700px"></img>
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/screenshot.png" width="700px"></img>
</p>
[View the ESPHome documentation](https://esphome.io/)
[View the ESPHome documentation][website]
## Example
@@ -26,15 +25,17 @@ firmware. For example, to include a [DHT22][dht22].
temperature and humidity sensor, you just need to include 8 lines of YAML
in your configuration file:
<img title="ESPHome DHT configuration example" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/dht-example.png" width="500px"></img>
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/dht-example.png" width="500px"></img>
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
<img title="ESPHome Home Assistant MQTT discovery" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/temperature-humidity.png" width="600px"></img>
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[dht22]: https://esphome.io/components/sensor/dht.html
[discord]: https://discord.gg/KhAMKrd
[releases-shield]: https://img.shields.io/github/release/esphome/esphome.svg
[releases]: https://esphome.io/changelog/index.html
[repository]: https://github.com/esphome/esphome
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
[dht22]: https://esphome.io/components/sensor/dht.html
[releases]: https://esphome.io/changelog/index.html
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome/logo.png
[website]: https://esphome.io/

View File

@@ -26,13 +26,12 @@ schema:
ssl: bool?
certfile: str?
keyfile: str?
relative_url: str?
leave_front_door_open: bool?
backup_exclude:
- '*/*/'
init: false
name: ESPHome
version: 2023.5.0
version: 2023.11.2
slug: esphome
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
image: ghcr.io/esphome/esphome-hassio

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@@ -6,6 +6,7 @@ from pathlib import Path
from enum import Enum
from shutil import copyfile
import sys
import os
class Channel(Enum):
@@ -37,7 +38,8 @@ def main(args):
with open(path, "w") as f:
yaml.dump(conf, f, indent=2, sort_keys=False, explicit_start=True)
for file_, conf_ in copyf.items():
for file_ in copyf:
os.makedirs(dir_ / Path(file_).parent, exist_ok=True)
if Path.exists(templ / channel.value / file_):
copyfile(templ / channel.value / file_, dir_ / file_)
else:

View File

@@ -1,9 +1,8 @@
# ESPHome Add-On
[![ESPHome logo](https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/logo.png)](https://esphome.io/)
[![ESPHome logo][logo]][website]
[![GitHub stars](https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000)](https://github.com/esphome/esphome)
[![GitHub Release][releases-shield]][releases]
[![GitHub stars][github-stars-shield]][repository]
[![Discord][discord-shield]][discord]
## About
@@ -14,10 +13,10 @@ is write YAML configuration files; the rest (over-the-air updates, compiling) is
handled by ESPHome.
<p align="center">
<img title="ESPHome dashboard screenshot" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/screenshot.png" width="700px"></img>
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/screenshot.png" width="700px"></img>
</p>
[View the ESPHome documentation](https://esphome.io/)
[View the ESPHome documentation][website]
## Example
@@ -26,15 +25,17 @@ firmware. For example, to include a [DHT22][dht22].
temperature and humidity sensor, you just need to include 8 lines of YAML
in your configuration file:
<img title="ESPHome DHT configuration example" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/dht-example.png" width="500px"></img>
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/dht-example.png" width="500px"></img>
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
<img title="ESPHome Home Assistant MQTT discovery" src="https://raw.githubusercontent.com/esphome/hassio/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome/images/temperature-humidity.png" width="600px"></img>
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[dht22]: https://esphome.io/components/sensor/dht.html
[discord]: https://discord.gg/KhAMKrd
[releases-shield]: https://img.shields.io/github/release/esphome/esphome.svg
[releases]: https://esphome.io/changelog/index.html
[repository]: https://github.com/esphome/esphome
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
[dht22]: https://esphome.io/components/sensor/dht.html
[releases]: https://esphome.io/changelog/index.html
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome/logo.png
[website]: https://esphome.io/

View File

@@ -34,7 +34,6 @@ base: &base
ssl: bool?
certfile: str?
keyfile: str?
relative_url: str?
leave_front_door_open: bool?
backup_exclude:
- "*/*/"
@@ -60,7 +59,6 @@ esphome-dev:
ssl: bool?
certfile: str?
keyfile: str?
relative_url: str?
leave_front_door_open: bool?
base_image: ghcr.io/esphome/esphome-hassio:dev
options:
@@ -70,7 +68,7 @@ esphome-beta:
<<: *base
directory: esphome-beta
name: ESPHome (beta)
version: '2023.5.0' # BETA
version: '2023.11.2' # BETA
slug: esphome-beta
description: "Beta version of ESPHome add-on"
url: https://beta.esphome.io/
@@ -84,14 +82,17 @@ esphome-stable:
<<: *base
directory: esphome
name: ESPHome
version: '2023.5.0' # STABLE
version: '2023.11.2' # STABLE
slug: esphome
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
image: ghcr.io/esphome/esphome-hassio
copy_files:
DOCS.md:
icon.png:
logo.png:
README.md:
translations/en.yaml:
- DOCS.md
- icon.png
- logo.png
- README.md
- translations/en.yaml
- images/dht-example.png
- images/screenshot.png
- images/temperature-humidity.png

41
template/beta/README.md Normal file
View File

@@ -0,0 +1,41 @@
# ESPHome Beta Add-On
[![ESPHome logo][logo]][website]
[![GitHub stars][github-stars-shield]][repository]
[![Discord][discord-shield]][discord]
## About
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
directly through Home Assistant **with no programming experience required**. All you need to do
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
handled by ESPHome.
<p align="center">
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/screenshot.png" width="700px"></img>
</p>
[View the ESPHome documentation][website]
## Example
With ESPHome, you can go from a few lines of YAML straight to a custom-made
firmware. For example, to include a [DHT22][dht22].
temperature and humidity sensor, you just need to include 8 lines of YAML
in your configuration file:
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/dht-example.png" width="500px"></img>
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/images/temperature-humidity.png" width="600px"></img>
[discord]: https://discord.gg/KhAMKrd
[repository]: https://github.com/esphome/esphome
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
[dht22]: https://beta.esphome.io/components/sensor/dht.html
[releases]: https://beta.esphome.io/changelog/index.html
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome-beta/logo.png
[website]: https://beta.esphome.io/

41
template/dev/README.md Normal file
View File

@@ -0,0 +1,41 @@
# ESPHome Dev Add-On
[![ESPHome logo][logo]][website]
[![GitHub stars][github-stars-shield]][repository]
[![Discord][discord-shield]][discord]
## About
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
directly through Home Assistant **with no programming experience required**. All you need to do
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
handled by ESPHome.
<p align="center">
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
</p>
[View the ESPHome documentation][website]
## Example
With ESPHome, you can go from a few lines of YAML straight to a custom-made
firmware. For example, to include a [DHT22][dht22].
temperature and humidity sensor, you just need to include 8 lines of YAML
in your configuration file:
<img title="ESPHome DHT configuration example" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/dht-example.png" width="500px"></img>
Then just click UPLOAD and the sensor will magically appear in Home Assistant:
<img title="ESPHome Home Assistant discovery" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/temperature-humidity.png" width="600px"></img>
[discord]: https://discord.gg/KhAMKrd
[repository]: https://github.com/esphome/esphome
[discord-shield]: https://img.shields.io/discord/429907082951524364.svg
[github-stars-shield]: https://img.shields.io/github/stars/esphome/esphome.svg?style=social&label=Star&maxAge=2592000
[dht22]: https://next.esphome.io/components/sensor/dht.html
[releases]: https://next.esphome.io/changelog/index.html
[logo]: https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/logo.png
[website]: https://next.esphome.io/

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 69 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB